Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 3.39 KB

AddressRequest.md

File metadata and controls

36 lines (30 loc) · 3.39 KB

EzmaxApi::AddressRequest

Properties

Name Type Description Notes
fki_addresstype_id Integer The unique ID of the Addresstype. Valid values: Value
s_address_civic String The Civic number.
s_address_street String The Street Name
s_address_suite String The Suite or appartment number
s_address_city String The City name
fki_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_address_zip String The Postal/Zip Code The value must be entered without spaces
f_address_longitude String The Longitude of the Address [optional]
f_address_latitude String The Latitude of the Address [optional]

Example

require 'Ezmaxapi'

instance = EzmaxApi::AddressRequest.new(
  fki_addresstype_id: 1,
  s_address_civic: 2540,
  s_address_street: Daniel-Johnson Blvd.,
  s_address_suite: 610,
  s_address_city: Laval,
  fki_province_id: 11,
  fki_country_id: 1,
  s_address_zip: H7T2S3,
  f_address_longitude: doej,
  f_address_latitude: doej
)