Method: OCI::ResourceManager::Models::WorkRequestError#initialize

Defined in:
lib/oci/resource_manager/models/work_request_error.rb

#initialize(attributes = {}) ⇒ WorkRequestError

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :code (String)

    The value to assign to the #code property

  • :message (String)

    The value to assign to the #message property

  • :timestamp (DateTime)

    The value to assign to the #timestamp property



53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/oci/resource_manager/models/work_request_error.rb', line 53

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.code = attributes[:'code'] if attributes[:'code']

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

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