Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.26 KB

File metadata and controls

32 lines (23 loc) · 1.26 KB

SOLAccountWithValue

Properties

Name Type Description Notes
name str The name of the account
signer bool Indicates if the account needs to sign the instruction. If true a signature for this account must be provided [optional]
writable bool Indicates if the account's data can be changed by the instruction. [optional]
address str The address of the account

Example

from fireblocks.models.sol_account_with_value import SOLAccountWithValue

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

# convert the object into a dict
sol_account_with_value_dict = sol_account_with_value_instance.to_dict()
# create an instance of SOLAccountWithValue from a dict
sol_account_with_value_from_dict = SOLAccountWithValue.from_dict(sol_account_with_value_dict)

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