Name | Type | Description | Notes |
---|---|---|---|
type | str | Type of the source | [optional] [default to 'sketch'] |
details | ThirdPartySource |
from openapi_client.models.tp_source_info import TpSourceInfo
# TODO update the JSON string below
json = "{}"
# create an instance of TpSourceInfo from a JSON string
tp_source_info_instance = TpSourceInfo.from_json(json)
# print the JSON string representation of the object
print(TpSourceInfo.to_json())
# convert the object into a dict
tp_source_info_dict = tp_source_info_instance.to_dict()
# create an instance of TpSourceInfo from a dict
tp_source_info_from_dict = TpSourceInfo.from_dict(tp_source_info_dict)