Class: LinodeOpenapiClient::GetTickets200ResponseDataInner
- Inherits:
-
Object
- Object
- LinodeOpenapiClient::GetTickets200ResponseDataInner
- Defined in:
- lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb
Overview
A Support Ticket opened on your Account.
Defined Under Namespace
Classes: EnumAttributeValidator
Instance Attribute Summary collapse
-
#attachments ⇒ Object
Read-only A list of filenames representing attached files associated with this Ticket.
-
#closable ⇒ Object
Whether the Support Ticket may be closed.
-
#closed ⇒ Object
__Filterable__, Read-only The date and time this Ticket was closed.
-
#description ⇒ Object
Read-only The full details of the issue or question.
-
#entity ⇒ Object
Returns the value of attribute entity.
-
#gravatar_id ⇒ Object
Read-only The Gravatar ID of the User who opened this Ticket.
-
#id ⇒ Object
Read-only The ID of the Support Ticket.
-
#opened ⇒ Object
__Filterable__, Read-only The date and time this Ticket was created.
-
#opened_by ⇒ Object
Read-only The User who opened this Ticket.
-
#status ⇒ Object
Read-only The current status of this Ticket.
-
#summary ⇒ Object
Read-only The summary or title for this Ticket.
-
#updated ⇒ Object
__Filterable__, Read-only The date and time this Ticket was last updated.
-
#updated_by ⇒ Object
Read-only The User who last updated this Ticket.
Class Method Summary collapse
-
._deserialize(type, value) ⇒ Object
Deserializes the data based on type.
-
.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.
-
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Integer
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ GetTickets200ResponseDataInner
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 = {}) ⇒ GetTickets200ResponseDataInner
Initializes the object
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 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 133 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `LinodeOpenapiClient::GetTickets200ResponseDataInner` 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 `LinodeOpenapiClient::GetTickets200ResponseDataInner`. 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?(:'opened') self.opened = attributes[:'opened'] end if attributes.key?(:'status') self.status = attributes[:'status'] end if attributes.key?(:'id') self.id = attributes[:'id'] end if attributes.key?(:'closable') self.closable = attributes[:'closable'] end if attributes.key?(:'updated') self.updated = attributes[:'updated'] end if attributes.key?(:'updated_by') self.updated_by = attributes[:'updated_by'] end if attributes.key?(:'entity') self.entity = attributes[:'entity'] end if attributes.key?(:'description') self.description = attributes[:'description'] end if attributes.key?(:'summary') self.summary = attributes[:'summary'] end if attributes.key?(:'gravatar_id') self.gravatar_id = attributes[:'gravatar_id'] end if attributes.key?(:'closed') self.closed = attributes[:'closed'] end if attributes.key?(:'opened_by') self.opened_by = attributes[:'opened_by'] end if attributes.key?(:'attachments') if (value = attributes[:'attachments']).is_a?(Array) self. = value end end end |
Instance Attribute Details
#attachments ⇒ Object
Read-only A list of filenames representing attached files associated with this Ticket.
55 56 57 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 55 def @attachments end |
#closable ⇒ Object
Whether the Support Ticket may be closed.
29 30 31 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 29 def closable @closable end |
#closed ⇒ Object
__Filterable__, Read-only The date and time this Ticket was closed.
49 50 51 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 49 def closed @closed end |
#description ⇒ Object
Read-only The full details of the issue or question.
40 41 42 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 40 def description @description end |
#entity ⇒ Object
Returns the value of attribute entity.
37 38 39 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 37 def entity @entity end |
#gravatar_id ⇒ Object
Read-only The Gravatar ID of the User who opened this Ticket.
46 47 48 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 46 def gravatar_id @gravatar_id end |
#id ⇒ Object
Read-only The ID of the Support Ticket.
26 27 28 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 26 def id @id end |
#opened ⇒ Object
__Filterable__, Read-only The date and time this Ticket was created.
20 21 22 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 20 def opened @opened end |
#opened_by ⇒ Object
Read-only The User who opened this Ticket.
52 53 54 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 52 def opened_by @opened_by end |
#status ⇒ Object
Read-only The current status of this Ticket.
23 24 25 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 23 def status @status end |
#summary ⇒ Object
Read-only The summary or title for this Ticket.
43 44 45 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 43 def summary @summary end |
#updated ⇒ Object
__Filterable__, Read-only The date and time this Ticket was last updated.
32 33 34 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 32 def updated @updated end |
#updated_by ⇒ Object
Read-only The User who last updated this Ticket.
35 36 37 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 35 def updated_by @updated_by end |
Class Method Details
._deserialize(type, value) ⇒ Object
Deserializes the data based on type
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 343 def self._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 = LinodeOpenapiClient.const_get(type) klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value) end end |
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about
99 100 101 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 99 def self.acceptable_attributes attribute_map.values end |
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 80 def self.attribute_map { :'opened' => :'opened', :'status' => :'status', :'id' => :'id', :'closable' => :'closable', :'updated' => :'updated', :'updated_by' => :'updated_by', :'entity' => :'entity', :'description' => :'description', :'summary' => :'summary', :'gravatar_id' => :'gravatar_id', :'closed' => :'closed', :'opened_by' => :'opened_by', :'attachments' => :'attachments' } end |
.build_from_hash(attributes) ⇒ Object
Builds the object from hash
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 319 def self.build_from_hash(attributes) return nil unless attributes.is_a?(Hash) attributes = attributes.transform_keys(&:to_sym) transformed_hash = {} openapi_types.each_pair do |key, type| if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil? transformed_hash["#{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[attribute_map[key]].is_a?(Array) transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) } end elsif !attributes[attribute_map[key]].nil? transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]]) end end new(transformed_hash) end |
.openapi_nullable ⇒ Object
List of attributes with nullable: true
123 124 125 126 127 128 129 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 123 def self.openapi_nullable Set.new([ :'updated_by', :'entity', :'closed', ]) end |
.openapi_types ⇒ Object
Attribute type mapping.
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 104 def self.openapi_types { :'opened' => :'Time', :'status' => :'String', :'id' => :'Integer', :'closable' => :'Boolean', :'updated' => :'Time', :'updated_by' => :'String', :'entity' => :'GetTickets200ResponseDataInnerEntity', :'description' => :'String', :'summary' => :'String', :'gravatar_id' => :'String', :'closed' => :'Time', :'opened_by' => :'String', :'attachments' => :'Array<String>' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 286 def ==(o) return true if self.equal?(o) self.class == o.class && opened == o.opened && status == o.status && id == o.id && closable == o.closable && updated == o.updated && updated_by == o.updated_by && entity == o.entity && description == o.description && summary == o.summary && gravatar_id == o.gravatar_id && closed == o.closed && opened_by == o.opened_by && == o. end |
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value
414 415 416 417 418 419 420 421 422 423 424 425 426 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 414 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 |
#eql?(o) ⇒ Boolean
306 307 308 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 306 def eql?(o) self == o end |
#hash ⇒ Integer
Calculates hash code according to all attributes.
312 313 314 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 312 def hash [opened, status, id, closable, updated, updated_by, entity, description, summary, gravatar_id, closed, opened_by, ].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 203 def list_invalid_properties warn '[DEPRECATED] the `list_invalid_properties` method is obsolete' invalid_properties = Array.new if !@description.nil? && @description.to_s.length > 65000 invalid_properties.push('invalid value for "description", the character length must be smaller than or equal to 65000.') end if !@description.nil? && @description.to_s.length < 1 invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.') end if !@summary.nil? && @summary.to_s.length > 64 invalid_properties.push('invalid value for "summary", the character length must be smaller than or equal to 64.') end if !@summary.nil? && @summary.to_s.length < 1 invalid_properties.push('invalid value for "summary", the character length must be great than or equal to 1.') end invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
390 391 392 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 390 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
396 397 398 399 400 401 402 403 404 405 406 407 408 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 396 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
384 385 386 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 384 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
227 228 229 230 231 232 233 234 235 236 |
# File 'lib/linode_openapi_client/models/get_tickets200_response_data_inner.rb', line 227 def valid? warn '[DEPRECATED] the `valid?` method is obsolete' status_validator = EnumAttributeValidator.new('String', ["closed", "new", "open"]) return false unless status_validator.valid?(@status) return false if !@description.nil? && @description.to_s.length > 65000 return false if !@description.nil? && @description.to_s.length < 1 return false if !@summary.nil? && @summary.to_s.length > 64 return false if !@summary.nil? && @summary.to_s.length < 1 true end |