Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.64 KB

File metadata and controls

38 lines (29 loc) · 1.64 KB

DirectAccessProvider

Provider used without per-account linking (accountBased is false).

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_access_provider import DirectAccessProvider

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

# convert the object into a dict
direct_access_provider_dict = direct_access_provider_instance.to_dict()
# create an instance of DirectAccessProvider from a dict
direct_access_provider_from_dict = DirectAccessProvider.from_dict(direct_access_provider_dict)

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