Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.48 KB

File metadata and controls

34 lines (25 loc) · 1.48 KB

CreateCounterpartyRequest

Properties

Name Type Description Notes
counterparty_name str The counterparty name.
counterparty_type CounterpartyType
wallet_addresses List[CreateWalletAddress] The wallet addresses of the counterparty.
country str The country of the counterparty, in ISO 3166-1 alpha-3 format. [optional]
email str The email of the counterparty. [optional]
contact_address str The contact address of the counterparty. [optional]

Example

from cobo_waas2.models.create_counterparty_request import CreateCounterpartyRequest

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

# convert the object into a dict
create_counterparty_request_dict = create_counterparty_request_instance.to_dict()
# create an instance of CreateCounterpartyRequest from a dict
create_counterparty_request_from_dict = CreateCounterpartyRequest.from_dict(create_counterparty_request_dict)

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