Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.5 KB

CreditcardclientResponse.md

File metadata and controls

34 lines (28 loc) · 1.5 KB

EzmaxApi::CreditcardclientResponse

Properties

Name Type Description Notes
pki_creditcardclient_id Integer The unique ID of the Creditcardclient
fki_creditcarddetail_id Integer The unique ID of the Creditcarddetail
b_creditcardclientrelation_isdefault Boolean Whether if it's an relationisdefault
s_creditcardclient_description String The description of the Creditcardclient
b_creditcardclient_isactive Boolean Whether the creditcardclient is active or not
b_creditcardclient_allowedagencypayment Boolean Whether if it's an allowedagencypayment
b_creditcardclient_allowedroyallepageprotection Boolean Whether if it's an allowedroyallepageprotection
b_creditcardclient_allowedtranquillit Boolean Whether if it's an allowedtranquillit
obj_creditcarddetail CreditcarddetailResponseCompound

Example

require 'Ezmaxapi'

instance = EzmaxApi::CreditcardclientResponse.new(
  pki_creditcardclient_id: 114,
  fki_creditcarddetail_id: 53,
  b_creditcardclientrelation_isdefault: true,
  s_creditcardclient_description: Visa,
  b_creditcardclient_isactive: true,
  b_creditcardclient_allowedagencypayment: true,
  b_creditcardclient_allowedroyallepageprotection: true,
  b_creditcardclient_allowedtranquillit: true,
  obj_creditcarddetail: null
)