Class: UltracartClient::ConversationParticipant
- Inherits:
-
Object
- Object
- UltracartClient::ConversationParticipant
- Defined in:
- lib/ultracart_api/models/conversation_participant.rb
Instance Attribute Summary collapse
-
#conversation_participant_arn ⇒ Object
Returns the value of attribute conversation_participant_arn.
-
#conversation_participant_name ⇒ Object
Returns the value of attribute conversation_participant_name.
-
#conversation_participant_uuid ⇒ Object
Returns the value of attribute conversation_participant_uuid.
-
#email ⇒ Object
Returns the value of attribute email.
-
#joined_dts ⇒ Object
Joined conversation date/time.
-
#language_iso_code ⇒ Object
Returns the value of attribute language_iso_code.
-
#last_message_dts ⇒ Object
Last message date/time.
-
#left_dts ⇒ Object
Left conversation date/time.
-
#profile_image_url ⇒ Object
Returns the value of attribute profile_image_url.
-
#sms_phone_number ⇒ Object
Returns the value of attribute sms_phone_number.
-
#status ⇒ Object
Returns the value of attribute status.
-
#timezone ⇒ Object
Returns the value of attribute timezone.
-
#unread_messages ⇒ Object
Returns the value of attribute unread_messages.
Class Method Summary collapse
-
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about.
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.build_from_hash(attributes) ⇒ Object
Builds the object from hash.
-
.openapi_nullable ⇒ Object
List of attributes with nullable: true.
-
.openapi_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
-
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type.
-
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Integer
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ ConversationParticipant
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility).
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Constructor Details
#initialize(attributes = {}) ⇒ ConversationParticipant
Initializes the object
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 98 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `UltracartClient::ConversationParticipant` initialize method" end # check to see if the attribute exists and convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| if (!self.class.attribute_map.key?(k.to_sym)) fail ArgumentError, "`#{k}` is not a valid attribute in `UltracartClient::ConversationParticipant`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect end h[k.to_sym] = v } if attributes.key?(:'conversation_participant_arn') self.conversation_participant_arn = attributes[:'conversation_participant_arn'] end if attributes.key?(:'conversation_participant_name') self.conversation_participant_name = attributes[:'conversation_participant_name'] end if attributes.key?(:'conversation_participant_uuid') self.conversation_participant_uuid = attributes[:'conversation_participant_uuid'] end if attributes.key?(:'email') self.email = attributes[:'email'] end if attributes.key?(:'joined_dts') self.joined_dts = attributes[:'joined_dts'] end if attributes.key?(:'language_iso_code') self.language_iso_code = attributes[:'language_iso_code'] end if attributes.key?(:'last_message_dts') self. = attributes[:'last_message_dts'] end if attributes.key?(:'left_dts') self.left_dts = attributes[:'left_dts'] end if attributes.key?(:'profile_image_url') self.profile_image_url = attributes[:'profile_image_url'] end if attributes.key?(:'sms_phone_number') self.sms_phone_number = attributes[:'sms_phone_number'] end if attributes.key?(:'status') self.status = attributes[:'status'] end if attributes.key?(:'timezone') self.timezone = attributes[:'timezone'] end if attributes.key?(:'unread_messages') self. = attributes[:'unread_messages'] end end |
Instance Attribute Details
#conversation_participant_arn ⇒ Object
Returns the value of attribute conversation_participant_arn.
18 19 20 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 18 def conversation_participant_arn @conversation_participant_arn end |
#conversation_participant_name ⇒ Object
Returns the value of attribute conversation_participant_name.
20 21 22 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 20 def conversation_participant_name @conversation_participant_name end |
#conversation_participant_uuid ⇒ Object
Returns the value of attribute conversation_participant_uuid.
22 23 24 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 22 def conversation_participant_uuid @conversation_participant_uuid end |
#email ⇒ Object
Returns the value of attribute email.
24 25 26 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 24 def email @email end |
#joined_dts ⇒ Object
Joined conversation date/time
27 28 29 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 27 def joined_dts @joined_dts end |
#language_iso_code ⇒ Object
Returns the value of attribute language_iso_code.
29 30 31 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 29 def language_iso_code @language_iso_code end |
#last_message_dts ⇒ Object
Last message date/time
32 33 34 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 32 def @last_message_dts end |
#left_dts ⇒ Object
Left conversation date/time
35 36 37 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 35 def left_dts @left_dts end |
#profile_image_url ⇒ Object
Returns the value of attribute profile_image_url.
37 38 39 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 37 def profile_image_url @profile_image_url end |
#sms_phone_number ⇒ Object
Returns the value of attribute sms_phone_number.
39 40 41 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 39 def sms_phone_number @sms_phone_number end |
#status ⇒ Object
Returns the value of attribute status.
41 42 43 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 41 def status @status end |
#timezone ⇒ Object
Returns the value of attribute timezone.
43 44 45 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 43 def timezone @timezone end |
#unread_messages ⇒ Object
Returns the value of attribute unread_messages.
45 46 47 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 45 def @unread_messages end |
Class Method Details
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about
67 68 69 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 67 def self.acceptable_attributes attribute_map.values end |
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 48 def self.attribute_map { :'conversation_participant_arn' => :'conversation_participant_arn', :'conversation_participant_name' => :'conversation_participant_name', :'conversation_participant_uuid' => :'conversation_participant_uuid', :'email' => :'email', :'joined_dts' => :'joined_dts', :'language_iso_code' => :'language_iso_code', :'last_message_dts' => :'last_message_dts', :'left_dts' => :'left_dts', :'profile_image_url' => :'profile_image_url', :'sms_phone_number' => :'sms_phone_number', :'status' => :'status', :'timezone' => :'timezone', :'unread_messages' => :'unread_messages' } end |
.build_from_hash(attributes) ⇒ Object
Builds the object from hash
212 213 214 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 212 def self.build_from_hash(attributes) new.build_from_hash(attributes) end |
.openapi_nullable ⇒ Object
List of attributes with nullable: true
91 92 93 94 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 91 def self.openapi_nullable Set.new([ ]) end |
.openapi_types ⇒ Object
Attribute type mapping.
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 72 def self.openapi_types { :'conversation_participant_arn' => :'String', :'conversation_participant_name' => :'String', :'conversation_participant_uuid' => :'String', :'email' => :'String', :'joined_dts' => :'String', :'language_iso_code' => :'String', :'last_message_dts' => :'String', :'left_dts' => :'String', :'profile_image_url' => :'String', :'sms_phone_number' => :'String', :'status' => :'String', :'timezone' => :'String', :'unread_messages' => :'Integer' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 179 def ==(o) return true if self.equal?(o) self.class == o.class && conversation_participant_arn == o.conversation_participant_arn && conversation_participant_name == o.conversation_participant_name && conversation_participant_uuid == o.conversation_participant_uuid && email == o.email && joined_dts == o.joined_dts && language_iso_code == o.language_iso_code && == o. && left_dts == o.left_dts && profile_image_url == o.profile_image_url && sms_phone_number == o.sms_phone_number && status == o.status && timezone == o.timezone && == o. end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 243 def _deserialize(type, value) case type.to_sym when :Time Time.parse(value) when :Date Date.parse(value) when :String value.to_s when :Integer value.to_i when :Float value.to_f when :Boolean if value.to_s =~ /\A(true|t|yes|y|1)\z/i true else false end when :Object # generic object (usually a Hash), return directly value when /\AArray<(?<inner_type>.+)>\z/ inner_type = Regexp.last_match[:inner_type] value.map { |v| _deserialize(inner_type, v) } when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/ k_type = Regexp.last_match[:k_type] v_type = Regexp.last_match[:v_type] {}.tap do |hash| value.each do |k, v| hash[_deserialize(k_type, k)] = _deserialize(v_type, v) end end else # model # models (e.g. Pet) or oneOf klass = UltracartClient.const_get(type) klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value) end end |
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value
314 315 316 317 318 319 320 321 322 323 324 325 326 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 314 def _to_hash(value) if value.is_a?(Array) value.compact.map { |v| _to_hash(v) } elsif value.is_a?(Hash) {}.tap do |hash| value.each { |k, v| hash[k] = _to_hash(v) } end elsif value.respond_to? :to_hash value.to_hash else value end end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 219 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) attributes = attributes.transform_keys(&:to_sym) self.class.openapi_types.each_pair do |key, type| if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key) self.send("#{key}=", nil) elsif type =~ /\AArray<(.*)>/i # check to ensure the input is an array given that the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) }) end elsif !attributes[self.class.attribute_map[key]].nil? self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]])) end end self end |
#eql?(o) ⇒ Boolean
199 200 201 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 199 def eql?(o) self == o end |
#hash ⇒ Integer
Calculates hash code according to all attributes.
205 206 207 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 205 def hash [conversation_participant_arn, conversation_participant_name, conversation_participant_uuid, email, joined_dts, language_iso_code, , left_dts, profile_image_url, sms_phone_number, status, timezone, ].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
166 167 168 169 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 166 def list_invalid_properties invalid_properties = Array.new invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
290 291 292 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 290 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
296 297 298 299 300 301 302 303 304 305 306 307 308 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 296 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) if value.nil? is_nullable = self.class.openapi_nullable.include?(attr) next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) end hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
284 285 286 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 284 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
173 174 175 |
# File 'lib/ultracart_api/models/conversation_participant.rb', line 173 def valid? true end |