Class: MergeTicketingClient::TicketRequest

Inherits:
Object
  • Object
show all
Defined in:
lib/merge_ticketing_client/models/ticket_request.rb

Overview

# The Ticket Object ### Description The ‘Ticket` object is used to represent a ticket or a task within a system. ### Usage Example TODO

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ TicketRequest

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 146

def initialize(attributes = {})
  if (!attributes.is_a?(Hash))
    fail ArgumentError, "The input argument (attributes) must be a hash in `MergeTicketingClient::TicketRequest` 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 `MergeTicketingClient::TicketRequest`. 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?(:'name')
    self.name = attributes[:'name']
  end

  if attributes.key?(:'assignees')
    if (value = attributes[:'assignees']).is_a?(Array)
      self.assignees = value
    end
  end

  if attributes.key?(:'creator')
    self.creator = attributes[:'creator']
  end

  if attributes.key?(:'due_date')
    self.due_date = attributes[:'due_date']
  end

  if attributes.key?(:'status')
    self.status = attributes[:'status']
  end

  if attributes.key?(:'description')
    self.description = attributes[:'description']
  end

  if attributes.key?(:'collections')
    if (value = attributes[:'collections']).is_a?(Array)
      self.collections = value
    end
  end

  if attributes.key?(:'ticket_type')
    self.ticket_type = attributes[:'ticket_type']
  end

  if attributes.key?(:'account')
    self. = attributes[:'account']
  end

  if attributes.key?(:'contact')
    self.contact = attributes[:'contact']
  end

  if attributes.key?(:'parent_ticket')
    self.parent_ticket = attributes[:'parent_ticket']
  end

  if attributes.key?(:'attachments')
    if (value = attributes[:'attachments']).is_a?(Array)
      self.attachments = value
    end
  end

  if attributes.key?(:'tags')
    if (value = attributes[:'tags']).is_a?(Array)
      self.tags = value
    end
  end

  if attributes.key?(:'completed_at')
    self.completed_at = attributes[:'completed_at']
  end

  if attributes.key?(:'ticket_url')
    self.ticket_url = attributes[:'ticket_url']
  end

  if attributes.key?(:'priority')
    self.priority = attributes[:'priority']
  end

  if attributes.key?(:'integration_params')
    if (value = attributes[:'integration_params']).is_a?(Hash)
      self.integration_params = value
    end
  end

  if attributes.key?(:'linked_account_params')
    if (value = attributes[:'linked_account_params']).is_a?(Hash)
      self. = value
    end
  end

  if attributes.key?(:'remote_fields')
    if (value = attributes[:'remote_fields']).is_a?(Array)
      self.remote_fields = value
    end
  end
end

Instance Attribute Details

#accountObject

The account associated with the ticket.



42
43
44
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 42

def 
  @account
end

#assigneesObject

Returns the value of attribute assignees.



22
23
24
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 22

def assignees
  @assignees
end

#attachmentsObject

Returns the value of attribute attachments.



50
51
52
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 50

def attachments
  @attachments
end

#collectionsObject

Returns the value of attribute collections.



36
37
38
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 36

def collections
  @collections
end

#completed_atObject

When the ticket was completed.



55
56
57
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 55

def completed_at
  @completed_at
end

#contactObject

The contact associated with the ticket.



45
46
47
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 45

def contact
  @contact
end

#creatorObject

The user who created this ticket.



25
26
27
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 25

def creator
  @creator
end

#descriptionObject

The ticket’s description. HTML version of description is mapped if supported by the third-party platform.



34
35
36
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 34

def description
  @description
end

#due_dateObject

The ticket’s due date.



28
29
30
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 28

def due_date
  @due_date
end

#integration_paramsObject

Returns the value of attribute integration_params.



63
64
65
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 63

def integration_params
  @integration_params
end

#linked_account_paramsObject

Returns the value of attribute linked_account_params.



65
66
67
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 65

def 
  @linked_account_params
end

#nameObject

The ticket’s name.



20
21
22
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 20

def name
  @name
end

#parent_ticketObject

The ticket’s parent ticket.



48
49
50
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 48

def parent_ticket
  @parent_ticket
end

#priorityObject

The priority or urgency of the Ticket. * ‘URGENT` - URGENT * `HIGH` - HIGH * `NORMAL` - NORMAL * `LOW` - LOW



61
62
63
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 61

def priority
  @priority
end

#remote_fieldsObject

Returns the value of attribute remote_fields.



67
68
69
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 67

def remote_fields
  @remote_fields
end

#statusObject

The current status of the ticket. * ‘OPEN` - OPEN * `CLOSED` - CLOSED * `IN_PROGRESS` - IN_PROGRESS * `ON_HOLD` - ON_HOLD



31
32
33
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 31

def status
  @status
end

#tagsObject

Returns the value of attribute tags.



52
53
54
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 52

def tags
  @tags
end

#ticket_typeObject

The ticket’s type.



39
40
41
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 39

def ticket_type
  @ticket_type
end

#ticket_urlObject

The 3rd party url of the Ticket.



58
59
60
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 58

def ticket_url
  @ticket_url
end

Class Method Details

.acceptable_attributesObject

Returns all the JSON keys this model knows about



95
96
97
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 95

def self.acceptable_attributes
  attribute_map.values
end

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 70

def self.attribute_map
  {
    :'name' => :'name',
    :'assignees' => :'assignees',
    :'creator' => :'creator',
    :'due_date' => :'due_date',
    :'status' => :'status',
    :'description' => :'description',
    :'collections' => :'collections',
    :'ticket_type' => :'ticket_type',
    :'account' => :'account',
    :'contact' => :'contact',
    :'parent_ticket' => :'parent_ticket',
    :'attachments' => :'attachments',
    :'tags' => :'tags',
    :'completed_at' => :'completed_at',
    :'ticket_url' => :'ticket_url',
    :'priority' => :'priority',
    :'integration_params' => :'integration_params',
    :'linked_account_params' => :'linked_account_params',
    :'remote_fields' => :'remote_fields'
  }
end

.build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



319
320
321
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 319

def self.build_from_hash(attributes)
  new.build_from_hash(attributes)
end

.openapi_nullableObject

List of attributes with nullable: true



125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 125

def self.openapi_nullable
  Set.new([
    :'name',
    :'creator',
    :'due_date',
    :'status',
    :'description',
    :'ticket_type',
    :'account',
    :'contact',
    :'parent_ticket',
    :'completed_at',
    :'ticket_url',
    :'priority',
    :'integration_params',
    :'linked_account_params',
  ])
end

.openapi_typesObject

Attribute type mapping.



100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 100

def self.openapi_types
  {
    :'name' => :'String',
    :'assignees' => :'Array<String>',
    :'creator' => :'String',
    :'due_date' => :'Time',
    :'status' => :'TicketStatusEnum',
    :'description' => :'String',
    :'collections' => :'Array<String>',
    :'ticket_type' => :'String',
    :'account' => :'String',
    :'contact' => :'String',
    :'parent_ticket' => :'String',
    :'attachments' => :'Array<String>',
    :'tags' => :'Array<String>',
    :'completed_at' => :'Time',
    :'ticket_url' => :'String',
    :'priority' => :'PriorityEnum',
    :'integration_params' => :'Hash<String, Object>',
    :'linked_account_params' => :'Hash<String, Object>',
    :'remote_fields' => :'Array<RemoteFieldRequest>'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 280

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      name == o.name &&
      assignees == o.assignees &&
      creator == o.creator &&
      due_date == o.due_date &&
      status == o.status &&
      description == o.description &&
      collections == o.collections &&
      ticket_type == o.ticket_type &&
       == o. &&
      contact == o.contact &&
      parent_ticket == o.parent_ticket &&
      attachments == o.attachments &&
      tags == o.tags &&
      completed_at == o.completed_at &&
      ticket_url == o.ticket_url &&
      priority == o.priority &&
      integration_params == o.integration_params &&
       == o. &&
      remote_fields == o.remote_fields
end

#_deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



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
381
382
383
384
385
386
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 349

def _deserialize(type, value)
  case type.to_sym
  when :Time
    Time.parse(value)
  when :Date
    Date.parse(value)
  when :String
    value
  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 = MergeTicketingClient.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

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



420
421
422
423
424
425
426
427
428
429
430
431
432
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 420

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

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 326

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  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

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


306
307
308
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 306

def eql?(o)
  self == o
end

#hashInteger

Calculates hash code according to all attributes.

Returns:

  • (Integer)

    Hash code



312
313
314
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 312

def hash
  [name, assignees, creator, due_date, status, description, collections, ticket_type, , contact, parent_ticket, attachments, tags, completed_at, ticket_url, priority, integration_params, , remote_fields].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



252
253
254
255
256
257
258
259
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 252

def list_invalid_properties
  invalid_properties = Array.new
  if !@ticket_url.nil? && @ticket_url.to_s.length > 2000
    invalid_properties.push('invalid value for "ticket_url", the character length must be smaller than or equal to 2000.')
  end

  invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



396
397
398
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 396

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



402
403
404
405
406
407
408
409
410
411
412
413
414
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 402

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_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



390
391
392
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 390

def to_s
  to_hash.to_s
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



263
264
265
266
# File 'lib/merge_ticketing_client/models/ticket_request.rb', line 263

def valid?
  return false if !@ticket_url.nil? && @ticket_url.to_s.length > 2000
  true
end