Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.05 KB

Providers.md

File metadata and controls

28 lines (21 loc) · 1.05 KB

Providers

Properties

Name Type Description Notes
all List[ProviderReference] [optional]
relevant List[ProviderReference] [optional]

Example

from phrasetms_client.models.providers import Providers

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

# convert the object into a dict
providers_dict = providers_instance.to_dict()
# create an instance of Providers from a dict
providers_from_dict = Providers.from_dict(providers_dict)

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