Class: OCI::Devops::Models::Reviewer

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/devops/models/reviewer.rb

Overview

Reviewer information.

Constant Summary collapse

PRINCIPAL_TYPE_ENUM =
[
  PRINCIPAL_TYPE_SERVICE = 'SERVICE'.freeze,
  PRINCIPAL_TYPE_USER = 'USER'.freeze,
  PRINCIPAL_TYPE_INSTANCE = 'INSTANCE'.freeze,
  PRINCIPAL_TYPE_RESOURCE = 'RESOURCE'.freeze,
  PRINCIPAL_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
PRINCIPAL_STATE_ENUM =
[
  PRINCIPAL_STATE_ACTIVE = 'ACTIVE'.freeze,
  PRINCIPAL_STATE_INACTIVE = 'INACTIVE'.freeze,
  PRINCIPAL_STATE_SUPPRESSED = 'SUPPRESSED'.freeze,
  PRINCIPAL_STATE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze
STATUS_ENUM =
[
  STATUS_APPROVED = 'APPROVED'.freeze,
  STATUS_REVIEW_PENDING = 'REVIEW_PENDING'.freeze,
  STATUS_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze
].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Reviewer

Initializes the object

Parameters:

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

    Model attributes in the form of hash

Options Hash (attributes):

  • :principal_id (String)

    The value to assign to the #principal_id property

  • :principal_name (String)

    The value to assign to the #principal_name property

  • :principal_type (String)

    The value to assign to the #principal_type property

  • :principal_state (String)

    The value to assign to the #principal_state property

  • :status (String)

    The value to assign to the #status property



90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# File 'lib/oci/devops/models/reviewer.rb', line 90

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

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

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

  self.principal_name = attributes[:'principalName'] if attributes[:'principalName']

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

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

  self.principal_type = attributes[:'principalType'] if attributes[:'principalType']

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

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

  self.principal_state = attributes[:'principalState'] if attributes[:'principalState']

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

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

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

Instance Attribute Details

#principal_idString

[Required] Pull Request reviewer id

Returns:

  • (String)


35
36
37
# File 'lib/oci/devops/models/reviewer.rb', line 35

def principal_id
  @principal_id
end

#principal_nameString

the name of the principal

Returns:

  • (String)


39
40
41
# File 'lib/oci/devops/models/reviewer.rb', line 39

def principal_name
  @principal_name
end

#principal_stateString

The state of the principal, it can be active or inactive or suppressed for emails

Returns:

  • (String)


47
48
49
# File 'lib/oci/devops/models/reviewer.rb', line 47

def principal_state
  @principal_state
end

#principal_typeString

the type of principal

Returns:

  • (String)


43
44
45
# File 'lib/oci/devops/models/reviewer.rb', line 43

def principal_type
  @principal_type
end

#statusString

The current state of the Review.

Returns:

  • (String)


51
52
53
# File 'lib/oci/devops/models/reviewer.rb', line 51

def status
  @status
end

Class Method Details

.attribute_mapObject

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



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

def self.attribute_map
  {
    # rubocop:disable Style/SymbolLiteral
    'principal_id': :'principalId',
    'principal_name': :'principalName',
    'principal_type': :'principalType',
    'principal_state': :'principalState',
    'status': :'status'
    # rubocop:enable Style/SymbolLiteral
  }
end

.swagger_typesObject

Attribute type mapping.



67
68
69
70
71
72
73
74
75
76
77
# File 'lib/oci/devops/models/reviewer.rb', line 67

def self.swagger_types
  {
    # rubocop:disable Style/SymbolLiteral
    'principal_id': :'String',
    'principal_name': :'String',
    'principal_type': :'String',
    'principal_state': :'String',
    'status': :'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



169
170
171
172
173
174
175
176
177
178
# File 'lib/oci/devops/models/reviewer.rb', line 169

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

  self.class == other.class &&
    principal_id == other.principal_id &&
    principal_name == other.principal_name &&
    principal_type == other.principal_type &&
    principal_state == other.principal_state &&
    status == other.status
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



203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
# File 'lib/oci/devops/models/reviewer.rb', line 203

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


183
184
185
# File 'lib/oci/devops/models/reviewer.rb', line 183

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



192
193
194
# File 'lib/oci/devops/models/reviewer.rb', line 192

def hash
  [principal_id, principal_name, principal_type, principal_state, status].hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



236
237
238
239
240
241
242
243
244
245
# File 'lib/oci/devops/models/reviewer.rb', line 236

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



230
231
232
# File 'lib/oci/devops/models/reviewer.rb', line 230

def to_s
  to_hash.to_s
end