Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.36 KB

File metadata and controls

30 lines (21 loc) · 1.36 KB

UpdateMerchantByIdRequest

Properties

Name Type Description Notes
name str The merchant name. [optional]
developer_fee_rate str The developer fee rate applied to this merchant. Must be a valid float between 0 and 1 (inclusive), with up to 4 decimal places. For more information on developer fee rate, please refer to Accounts and fund allocation. [optional]

Example

from cobo_waas2.models.update_merchant_by_id_request import UpdateMerchantByIdRequest

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

# convert the object into a dict
update_merchant_by_id_request_dict = update_merchant_by_id_request_instance.to_dict()
# create an instance of UpdateMerchantByIdRequest from a dict
update_merchant_by_id_request_from_dict = UpdateMerchantByIdRequest.from_dict(update_merchant_by_id_request_dict)

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