Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 976 Bytes

PhoneResponse.md

File metadata and controls

26 lines (20 loc) · 976 Bytes

EzmaxApi::PhoneResponse

Properties

Name Type Description Notes
pki_phone_id Integer The unique ID of the Phone.
fki_phonetype_id Integer The unique ID of the Phonetype. Valid values: Value
e_phone_type FieldEPhoneType [optional]
s_phone_e164 String A phone number in E.164 Format [optional]
s_phone_extension String The extension of the phone number. The extension is the "123" section in this sample phone number: (514) 990-1516 x123. It can also be used with international phone numbers [optional]

Example

require 'Ezmaxapi'

instance = EzmaxApi::PhoneResponse.new(
  pki_phone_id: 1,
  fki_phonetype_id: 1,
  e_phone_type: null,
  s_phone_e164: +15149901516,
  s_phone_extension: 123
)