You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The updated country of the counterparty, in ISO 3166-1 alpha-3 format.
[optional]
updated_email
str
The updated email of the counterparty.
[optional]
updated_contact_address
str
The updated contact address of the counterparty.
[optional]
Example
fromcobo_waas2.models.update_counterparty_requestimportUpdateCounterpartyRequest# TODO update the JSON string belowjson="{}"# create an instance of UpdateCounterpartyRequest from a JSON stringupdate_counterparty_request_instance=UpdateCounterpartyRequest.from_json(json)
# print the JSON string representation of the objectprint(UpdateCounterpartyRequest.to_json())
# convert the object into a dictupdate_counterparty_request_dict=update_counterparty_request_instance.to_dict()
# create an instance of UpdateCounterpartyRequest from a dictupdate_counterparty_request_from_dict=UpdateCounterpartyRequest.from_dict(update_counterparty_request_dict)