Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.17 KB

GetFilterParameter.md

File metadata and controls

35 lines (26 loc) · 1.17 KB

GetFilterParameter

Properties

Name Type Description Notes
id str [optional]
user_id str [optional]
vault_account_id float [optional]
connection_method str [optional]
fee_level str [optional]
app_url str [optional]
app_name str [optional]

Example

from fireblocks.models.get_filter_parameter import GetFilterParameter

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

# convert the object into a dict
get_filter_parameter_dict = get_filter_parameter_instance.to_dict()
# create an instance of GetFilterParameter from a dict
get_filter_parameter_from_dict = GetFilterParameter.from_dict(get_filter_parameter_dict)

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