Class: OCI::Cims::Models::Ticket
- Inherits:
-
Object
- Object
- OCI::Cims::Models::Ticket
- 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_PENDING_WITH_SUPPORT = 'PENDING_WITH_SUPPORT'.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
-
#description ⇒ String
[Required] The description of the issue addressed in the ticket.
-
#lifecycle_details ⇒ String
Additional information about the current
lifecycleState
. -
#lifecycle_state ⇒ String
The current state of the ticket.
-
#resource_list ⇒ Array<OCI::Cims::Models::Resource>
The list of resources associated with the ticket.
-
#severity ⇒ String
[Required] The severity assigned to the ticket.
-
#ticket_number ⇒ String
Unique identifier for the ticket.
-
#time_created ⇒ Integer
The time when the ticket was created, in seconds since epoch time.
-
#time_updated ⇒ Integer
The time when the ticket was updated, in seconds since epoch time.
-
#title ⇒ String
[Required] The title of the ticket.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ Ticket
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Constructor Details
#initialize(attributes = {}) ⇒ Ticket
Initializes the object
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 167 |
# File 'lib/oci/cims/models/ticket.rb', line 120 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
#description ⇒ String
[Required] The description of the issue addressed in the ticket.
53 54 55 |
# File 'lib/oci/cims/models/ticket.rb', line 53 def description @description end |
#lifecycle_details ⇒ String
Additional information about the current lifecycleState
.
69 70 71 |
# File 'lib/oci/cims/models/ticket.rb', line 69 def lifecycle_details @lifecycle_details end |
#lifecycle_state ⇒ String
The current state of the ticket.
65 66 67 |
# File 'lib/oci/cims/models/ticket.rb', line 65 def lifecycle_state @lifecycle_state end |
#resource_list ⇒ Array<OCI::Cims::Models::Resource>
The list of resources associated with the ticket.
45 46 47 |
# File 'lib/oci/cims/models/ticket.rb', line 45 def resource_list @resource_list end |
#severity ⇒ String
[Required] The severity assigned to the ticket.
41 42 43 |
# File 'lib/oci/cims/models/ticket.rb', line 41 def severity @severity end |
#ticket_number ⇒ String
Unique identifier for the ticket.
37 38 39 |
# File 'lib/oci/cims/models/ticket.rb', line 37 def ticket_number @ticket_number end |
#time_created ⇒ Integer
The time when the ticket was created, in seconds since epoch time.
57 58 59 |
# File 'lib/oci/cims/models/ticket.rb', line 57 def time_created @time_created end |
#time_updated ⇒ Integer
The time when the ticket was updated, in seconds since epoch time.
61 62 63 |
# File 'lib/oci/cims/models/ticket.rb', line 61 def time_updated @time_updated end |
#title ⇒ String
[Required] The title of the ticket.
49 50 51 |
# File 'lib/oci/cims/models/ticket.rb', line 49 def title @title end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/oci/cims/models/ticket.rb', line 72 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_types ⇒ Object
Attribute type mapping.
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'lib/oci/cims/models/ticket.rb', line 89 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.
215 216 217 218 219 220 221 222 223 224 225 226 227 228 |
# File 'lib/oci/cims/models/ticket.rb', line 215 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
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 |
# File 'lib/oci/cims/models/ticket.rb', line 253 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
233 234 235 |
# File 'lib/oci/cims/models/ticket.rb', line 233 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
242 243 244 |
# File 'lib/oci/cims/models/ticket.rb', line 242 def hash [ticket_number, severity, resource_list, title, description, time_created, time_updated, lifecycle_state, lifecycle_details].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
286 287 288 289 290 291 292 293 294 295 |
# File 'lib/oci/cims/models/ticket.rb', line 286 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_s ⇒ String
Returns the string representation of the object
280 281 282 |
# File 'lib/oci/cims/models/ticket.rb', line 280 def to_s to_hash.to_s end |