Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1021 Bytes

File metadata and controls

32 lines (23 loc) · 1021 Bytes

DataSourceDTO

Properties

Name Type Description Notes
licence_holder str
licence_holder_url str
licence_holder_logo str [optional]
licence_url str [optional]

Example

from cm_python_openapi_sdk.models.data_source_dto import DataSourceDTO

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

# convert the object into a dict
data_source_dto_dict = data_source_dto_instance.to_dict()
# create an instance of DataSourceDTO from a dict
data_source_dto_from_dict = DataSourceDTO.from_dict(data_source_dto_dict)

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