77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
# File 'lib/purecloud/models/billing_address.rb', line 77
def initialize(attributes = {})
return unless attributes.is_a?(Hash)
attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}
if attributes[:'id']
self.id = attributes[:'id']
end
if attributes[:'name']
self.name = attributes[:'name']
end
if attributes[:'street']
self.street = attributes[:'street']
end
if attributes[:'city']
self.city = attributes[:'city']
end
if attributes[:'countryName']
self.country_name = attributes[:'countryName']
end
if attributes[:'stateName']
self.state_name = attributes[:'stateName']
end
if attributes[:'postalCode']
self.postal_code = attributes[:'postalCode']
end
if attributes[:'selfUri']
self.self_uri = attributes[:'selfUri']
end
end
|