Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 758 Bytes

File metadata and controls

26 lines (20 loc) · 758 Bytes

EzmaxApi::CustomerAutocompleteElementResponse

Properties

Name Type Description Notes
pki_customer_id Integer The unique ID of the Customer.
fki_department_id Integer The unique ID of the Department
s_customer_name String The name of the Customer
s_customer_code String The code of the Customer
b_customer_isactive Boolean Whether the customer is active or not

Example

require 'Ezmaxapi'

instance = EzmaxApi::CustomerAutocompleteElementResponse.new(
  pki_customer_id: 18,
  fki_department_id: 21,
  s_customer_name: eZmax Solutions,
  s_customer_code: EZMA1,
  b_customer_isactive: true
)