Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.59 KB

File metadata and controls

37 lines (28 loc) · 1.59 KB

DirectProviderDetails

Properties

Name Type Description Notes
id str Unique identifier for the provider
name str Display name of the provider
logo str URL to the logo image of the provider [optional]
account_based bool Indicates whether the provider access model is through accounts or directly
manifest Manifest
approved bool Whether the provider was approved for use [optional]
has_terms_of_service bool Whether the provider has terms of service
terms_of_service_url str URL to the terms of service document [optional]
privacy_policy_url str URL to the privacy policy document [optional]

Example

from fireblocks.models.direct_provider_details import DirectProviderDetails

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

# convert the object into a dict
direct_provider_details_dict = direct_provider_details_instance.to_dict()
# create an instance of DirectProviderDetails from a dict
direct_provider_details_from_dict = DirectProviderDetails.from_dict(direct_provider_details_dict)

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