Class: OCI::Cims::Models::Ticket

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/cims/models/ticket.rb

Overview

Details about the ticket created.

Constant Summary collapse

SEVERITY_ENUM =
[
  SEVERITY_HIGHEST = 'HIGHEST'.freeze,
  SEVERITY_HIGH = 'HIGH'.freeze,
  SEVERITY_MEDIUM = 'MEDIUM'.freeze,
  SEVERITY_LOW = 'LOW'.freeze,
  SEVERITY_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
LIFECYCLE_STATE_ENUM =
[
  LIFECYCLE_STATE_ACTIVE = 'ACTIVE'.freeze,
  LIFECYCLE_STATE_CLOSED = 'CLOSED'.freeze,
  LIFECYCLE_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
LIFECYCLE_DETAILS_ENUM =
[
  LIFECYCLE_DETAILS_PENDING_WITH_ORACLE = 'PENDING_WITH_ORACLE'.freeze,
  LIFECYCLE_DETAILS_PENDING_WITH_CUSTOMER = 'PENDING_WITH_CUSTOMER'.freeze,
  LIFECYCLE_DETAILS_CLOSE_REQUESTED = 'CLOSE_REQUESTED'.freeze,
  LIFECYCLE_DETAILS_CLOSED = 'CLOSED'.freeze,
  LIFECYCLE_DETAILS_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Ticket

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :ticket_number (String)

    The value to assign to the #ticket_number property

  • :severity (String)

    The value to assign to the #severity property

  • :resource_list (Array<OCI::Cims::Models::Resource>)

    The value to assign to the #resource_list property

  • :title (String)

    The value to assign to the #title property

  • :description (String)

    The value to assign to the #description property

  • :time_created (Integer)

    The value to assign to the #time_created property

  • :time_updated (Integer)

    The value to assign to the #time_updated property

  • :lifecycle_state (String)

    The value to assign to the #lifecycle_state property

  • :lifecycle_details (String)

    The value to assign to the #lifecycle_details property



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
163
164
165
166
# File 'lib/oci/cims/models/ticket.rb', line 119

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  self.ticket_number = attributes[:'ticketNumber'] if attributes[:'ticketNumber']

  raise 'You cannot provide both :ticketNumber and :ticket_number' if attributes.key?(:'ticketNumber') && attributes.key?(:'ticket_number')

  self.ticket_number = attributes[:'ticket_number'] if attributes[:'ticket_number']

  self.severity = attributes[:'severity'] if attributes[:'severity']

  self.resource_list = attributes[:'resourceList'] if attributes[:'resourceList']

  raise 'You cannot provide both :resourceList and :resource_list' if attributes.key?(:'resourceList') && attributes.key?(:'resource_list')

  self.resource_list = attributes[:'resource_list'] if attributes[:'resource_list']

  self.title = attributes[:'title'] if attributes[:'title']

  self.description = attributes[:'description'] if attributes[:'description']

  self.time_created = attributes[:'timeCreated'] if attributes[:'timeCreated']

  raise 'You cannot provide both :timeCreated and :time_created' if attributes.key?(:'timeCreated') && attributes.key?(:'time_created')

  self.time_created = attributes[:'time_created'] if attributes[:'time_created']

  self.time_updated = attributes[:'timeUpdated'] if attributes[:'timeUpdated']

  raise 'You cannot provide both :timeUpdated and :time_updated' if attributes.key?(:'timeUpdated') && attributes.key?(:'time_updated')

  self.time_updated = attributes[:'time_updated'] if attributes[:'time_updated']

  self.lifecycle_state = attributes[:'lifecycleState'] if attributes[:'lifecycleState']

  raise 'You cannot provide both :lifecycleState and :lifecycle_state' if attributes.key?(:'lifecycleState') && attributes.key?(:'lifecycle_state')

  self.lifecycle_state = attributes[:'lifecycle_state'] if attributes[:'lifecycle_state']

  self.lifecycle_details = attributes[:'lifecycleDetails'] if attributes[:'lifecycleDetails']

  raise 'You cannot provide both :lifecycleDetails and :lifecycle_details' if attributes.key?(:'lifecycleDetails') && attributes.key?(:'lifecycle_details')

  self.lifecycle_details = attributes[:'lifecycle_details'] if attributes[:'lifecycle_details']
end

Instance Attribute Details

#descriptionString

[Required] The description of the issue addressed in the ticket.

Returns:

  • (String)


52
53
54
# File 'lib/oci/cims/models/ticket.rb', line 52

def description
  @description
end

#lifecycle_detailsString

Additional information about the current lifecycleState.

Returns:

  • (String)


68
69
70
# File 'lib/oci/cims/models/ticket.rb', line 68

def lifecycle_details
  @lifecycle_details
end

#lifecycle_stateString

The current state of the ticket.

Returns:

  • (String)


64
65
66
# File 'lib/oci/cims/models/ticket.rb', line 64

def lifecycle_state
  @lifecycle_state
end

#resource_listArray<OCI::Cims::Models::Resource>

The list of resources associated with the ticket.

Returns:



44
45
46
# File 'lib/oci/cims/models/ticket.rb', line 44

def resource_list
  @resource_list
end

#severityString

[Required] The severity assigned to the ticket.

Returns:

  • (String)


40
41
42
# File 'lib/oci/cims/models/ticket.rb', line 40

def severity
  @severity
end

#ticket_numberString

Unique identifier for the ticket.

Returns:

  • (String)


36
37
38
# File 'lib/oci/cims/models/ticket.rb', line 36

def ticket_number
  @ticket_number
end

#time_createdInteger

The time when the ticket was created, in milliseconds since epoch time.

Returns:

  • (Integer)


56
57
58
# File 'lib/oci/cims/models/ticket.rb', line 56

def time_created
  @time_created
end

#time_updatedInteger

The time when the ticket was updated, in milliseconds since epoch time.

Returns:

  • (Integer)


60
61
62
# File 'lib/oci/cims/models/ticket.rb', line 60

def time_updated
  @time_updated
end

#titleString

[Required] The title of the ticket.

Returns:

  • (String)


48
49
50
# File 'lib/oci/cims/models/ticket.rb', line 48

def title
  @title
end

Class Method Details

.attribute_mapObject

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



71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# File 'lib/oci/cims/models/ticket.rb', line 71

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'ticket_number': :'ticketNumber',
    'severity': :'severity',
    'resource_list': :'resourceList',
    'title': :'title',
    'description': :'description',
    'time_created': :'timeCreated',
    'time_updated': :'timeUpdated',
    'lifecycle_state': :'lifecycleState',
    'lifecycle_details': :'lifecycleDetails'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/oci/cims/models/ticket.rb', line 88

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'ticket_number': :'String',
    'severity': :'String',
    'resource_list': :'Array<OCI::Cims::Models::Resource>',
    'title': :'String',
    'description': :'String',
    'time_created': :'Integer',
    'time_updated': :'Integer',
    'lifecycle_state': :'String',
    'lifecycle_details': :'String'
    # rubocop:enable Style/SymbolLiteral
  }
end

Instance Method Details

#==(other) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • other (Object)

    the other object to be compared



214
215
216
217
218
219
220
221
222
223
224
225
226
227
# File 'lib/oci/cims/models/ticket.rb', line 214

def ==(other)
  return true if equal?(other)

  self.class == other.class &&
    ticket_number == other.ticket_number &&
    severity == other.severity &&
    resource_list == other.resource_list &&
    title == other.title &&
    description == other.description &&
    time_created == other.time_created &&
    time_updated == other.time_updated &&
    lifecycle_state == other.lifecycle_state &&
    lifecycle_details == other.lifecycle_details
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



252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
# File 'lib/oci/cims/models/ticket.rb', line 252

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)

  self.class.swagger_types.each_pair do |key, type|
    if type =~ /^Array<(.*)>/i
      # check to ensure the input is an array given that the the attribute
      # is documented as an array but the input is not
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        public_method("#{key}=").call(
          attributes[self.class.attribute_map[key]]
            .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) }
        )
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      public_method("#{key}=").call(
        OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]])
      )
    end
    # or else data not found in attributes(hash), not an issue as the data can be optional
  end

  self
end

#eql?(other) ⇒ Boolean

Parameters:

  • other (Object)

    the other object to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


232
233
234
# File 'lib/oci/cims/models/ticket.rb', line 232

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



241
242
243
# File 'lib/oci/cims/models/ticket.rb', line 241

def hash
  [ticket_number, severity, resource_list, title, description, time_created, time_updated, lifecycle_state, lifecycle_details].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



285
286
287
288
289
290
291
292
293
294
# File 'lib/oci/cims/models/ticket.rb', line 285

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = public_method(attr).call
    next if value.nil? && !instance_variable_defined?("@#{attr}")

    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



279
280
281
# File 'lib/oci/cims/models/ticket.rb', line 279

def to_s
  to_hash.to_s
end