Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.07 KB

File metadata and controls

29 lines (20 loc) · 1.07 KB

NoResultsResponseColumnsValue

Properties

Name Type Description Notes
title str [optional]

Example

from igvf_client.models.no_results_response_columns_value import NoResultsResponseColumnsValue

# TODO update the JSON string below
json = "{}"
# create an instance of NoResultsResponseColumnsValue from a JSON string
no_results_response_columns_value_instance = NoResultsResponseColumnsValue.from_json(json)
# print the JSON string representation of the object
print(NoResultsResponseColumnsValue.to_json())

# convert the object into a dict
no_results_response_columns_value_dict = no_results_response_columns_value_instance.to_dict()
# create an instance of NoResultsResponseColumnsValue from a dict
no_results_response_columns_value_from_dict = NoResultsResponseColumnsValue.from_dict(no_results_response_columns_value_dict)

[Back to Model list] [Back to API list] [Back to README]