Skip to content

Files

Latest commit

 

History

History
30 lines (21 loc) · 972 Bytes

TpSourceInfo.md

File metadata and controls

30 lines (21 loc) · 972 Bytes

TpSourceInfo

Properties

Name Type Description Notes
type str Type of the source [optional] [default to 'sketch']
details ThirdPartySource

Example

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)

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