Class: Telnyx::Models::WhatsappContact::Address
Instance Attribute Summary collapse
Instance Method Summary
collapse
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(addresses: nil, birthday: nil, emails: nil, name: nil, org: nil, phones: nil, urls: nil) ⇒ Object
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
# File 'lib/telnyx/models/whatsapp_contact.rb', line 50
class Address < Telnyx::Internal::Type::BaseModel
optional :city, String
optional :country, String
optional :country_code, String
optional :state, String
optional :street, String
optional :type, String
optional :zip, String
end
|
Instance Attribute Details
#city ⇒ String?
54
|
# File 'lib/telnyx/models/whatsapp_contact.rb', line 54
optional :city, String
|
#country ⇒ String?
59
|
# File 'lib/telnyx/models/whatsapp_contact.rb', line 59
optional :country, String
|
#country_code ⇒ String?
64
|
# File 'lib/telnyx/models/whatsapp_contact.rb', line 64
optional :country_code, String
|
#state ⇒ String?
69
|
# File 'lib/telnyx/models/whatsapp_contact.rb', line 69
optional :state, String
|
#street ⇒ String?
74
|
# File 'lib/telnyx/models/whatsapp_contact.rb', line 74
optional :street, String
|
#type ⇒ String?
79
|
# File 'lib/telnyx/models/whatsapp_contact.rb', line 79
optional :type, String
|
#zip ⇒ String?
84
|
# File 'lib/telnyx/models/whatsapp_contact.rb', line 84
optional :zip, String
|