Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.4 KB

File metadata and controls

35 lines (26 loc) · 1.4 KB

SourceConfig

Source account configuration for policy rules

Properties

Name Type Description Notes
type List[AccountType2] Source account types [optional]
sub_type List[AccountIdentifier] Source account subtypes [optional]
ids List[AccountIdentifier] Source account identifiers [optional]
tags List[PolicyTag] Tags for source matching [optional]
operator PolicyOperator
match_from str Whether to match from account (relevant only for ORDER policy type) [optional]

Example

from fireblocks.models.source_config import SourceConfig

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

# convert the object into a dict
source_config_dict = source_config_instance.to_dict()
# create an instance of SourceConfig from a dict
source_config_from_dict = SourceConfig.from_dict(source_config_dict)

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