Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 2.87 KB

ProvinceAutocompleteElementResponse.md

File metadata and controls

26 lines (20 loc) · 2.87 KB

EzmaxApi::ProvinceAutocompleteElementResponse

Properties

Name Type Description Notes
pki_province_id Integer The unique ID of the Province. Here are some common values (Complete list must be retrieved from API): Value
fki_country_id Integer The unique ID of the Country. Here are some common values (Complete list must be retrieved from API): Value
s_province_name_x String The name of the Province in the language of the requester
s_province_shortname String The shortname of the Province
b_province_isactive Boolean Whether the Province is active or not

Example

require 'Ezmaxapi'

instance = EzmaxApi::ProvinceAutocompleteElementResponse.new(
  pki_province_id: 11,
  fki_country_id: 1,
  s_province_name_x: Quebec,
  s_province_shortname: QC,
  b_province_isactive: true
)