Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 921 Bytes

File metadata and controls

29 lines (21 loc) · 921 Bytes

LineProviderInfo

Properties

Name Type Description Notes
id int
name str

Example

from cbbd.models.line_provider_info import LineProviderInfo

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

# convert the object into a dict
line_provider_info_dict = line_provider_info_instance.to_dict()
# create an instance of LineProviderInfo from a dict
line_provider_info_from_dict = LineProviderInfo.from_dict(line_provider_info_dict)

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