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 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
fromcobo_waas2.models.update_merchant_by_id_requestimportUpdateMerchantByIdRequest# TODO update the JSON string belowjson="{}"# create an instance of UpdateMerchantByIdRequest from a JSON stringupdate_merchant_by_id_request_instance=UpdateMerchantByIdRequest.from_json(json)
# print the JSON string representation of the objectprint(UpdateMerchantByIdRequest.to_json())
# convert the object into a dictupdate_merchant_by_id_request_dict=update_merchant_by_id_request_instance.to_dict()
# create an instance of UpdateMerchantByIdRequest from a dictupdate_merchant_by_id_request_from_dict=UpdateMerchantByIdRequest.from_dict(update_merchant_by_id_request_dict)