Name | Type | Description | Notes |
---|---|---|---|
all | List[ProviderReference] | [optional] | |
relevant | List[ProviderReference] | [optional] |
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)