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
Account number to be credited on payment completion
name
str
Merchant name
Example
fromjenga_client.models.equitel_push_request_merchantimportEquitelPushRequestMerchant# TODO update the JSON string belowjson="{}"# create an instance of EquitelPushRequestMerchant from a JSON stringequitel_push_request_merchant_instance=EquitelPushRequestMerchant.from_json(json)
# print the JSON string representation of the objectprint(EquitelPushRequestMerchant.to_json())
# convert the object into a dictequitel_push_request_merchant_dict=equitel_push_request_merchant_instance.to_dict()
# create an instance of EquitelPushRequestMerchant from a dictequitel_push_request_merchant_from_dict=EquitelPushRequestMerchant.from_dict(equitel_push_request_merchant_dict)