Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 945 Bytes

File metadata and controls

30 lines (21 loc) · 945 Bytes

DataStoreSource

Properties

Name Type Description Notes
id str [optional]
name str [optional]

Example

from ibm_gdsc_sdk_saas.models.data_store_source import DataStoreSource

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

# convert the object into a dict
data_store_source_dict = data_store_source_instance.to_dict()
# create an instance of DataStoreSource from a dict
data_store_source_from_dict = DataStoreSource.from_dict(data_store_source_dict)

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