Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.9 KB

CreditcardmerchantRequest.md

File metadata and controls

39 lines (30 loc) · 1.9 KB

CreditcardmerchantRequest

A Creditcardmerchant Object

Properties

Name Type Description Notes
pki_creditcardmerchant_id int The unique ID of the Creditcardmerchant [optional]
fki_bankaccount_id int The unique ID of the Bankaccount
fki_language_id int The unique ID of the Language. Valid values: Value
b_creditcardmerchant_denyvisa bool Whether if visa are denied
b_creditcardmerchant_denymastercard bool Whether if mastercard are denied
b_creditcardmerchant_denyamex bool Whether if amex are denied
b_creditcardmerchant_isactive bool Whether the creditcardmerchant is active or not
s_creditcardmerchant_apitoken str The apitoken of the Creditcardmerchant [optional]
s_creditcardmerchant_description str The description of the Creditcardmerchant
s_creditcardmerchant_storeid str The storeid of the Creditcardmerchant

Example

from eZmaxApi.models.creditcardmerchant_request import CreditcardmerchantRequest

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

# convert the object into a dict
creditcardmerchant_request_dict = creditcardmerchant_request_instance.to_dict()
# create an instance of CreditcardmerchantRequest from a dict
creditcardmerchant_request_from_dict = CreditcardmerchantRequest.from_dict(creditcardmerchant_request_dict)

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