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 amount that needs to be credited to the member
member_id
object
MerchantCredit ID as represented by the merchant
[optional]
Example
fromwallet.models.wt_merchant_credit_creation_paramsimportWTMerchantCreditCreationParams# TODO update the JSON string belowjson="{}"# create an instance of WTMerchantCreditCreationParams from a JSON stringwt_merchant_credit_creation_params_instance=WTMerchantCreditCreationParams.from_json(json)
# print the JSON string representation of the objectprintWTMerchantCreditCreationParams.to_json()
# convert the object into a dictwt_merchant_credit_creation_params_dict=wt_merchant_credit_creation_params_instance.to_dict()
# create an instance of WTMerchantCreditCreationParams from a dictwt_merchant_credit_creation_params_form_dict=wt_merchant_credit_creation_params.from_dict(wt_merchant_credit_creation_params_dict)