Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 954 Bytes

File metadata and controls

30 lines (21 loc) · 954 Bytes

PlatformAccount

Properties

Name Type Description Notes
type PlatformPeerType
account_id str

Example

from fireblocks.models.platform_account import PlatformAccount

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

# convert the object into a dict
platform_account_dict = platform_account_instance.to_dict()
# create an instance of PlatformAccount from a dict
platform_account_from_dict = PlatformAccount.from_dict(platform_account_dict)

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