Class: OCI::IdentityDomains::Models::AccountMgmtInfoOwner
- Inherits:
-
Object
- Object
- OCI::IdentityDomains::Models::AccountMgmtInfoOwner
- Defined in:
- lib/oci/identity_domains/models/account_mgmt_info_owner.rb
Overview
Owning user of the account
SCIM++ Properties: - idcsSearchable: true - multiValued: false - mutability: immutable - required: false - returned: default - type: complex - uniqueness: none
Instance Attribute Summary collapse
-
#display ⇒ String
User display name.
-
#email ⇒ String
The email address of this user.
-
#ref ⇒ String
User URI.
-
#user_name ⇒ String
User name.
-
#value ⇒ String
[Required] User Identifier.
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 = {}) ⇒ AccountMgmtInfoOwner
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 = {}) ⇒ AccountMgmtInfoOwner
Initializes the object
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'lib/oci/identity_domains/models/account_mgmt_info_owner.rb', line 126 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.value = attributes[:'value'] if attributes[:'value'] self.ref = attributes[:'$ref'] if attributes[:'$ref'] self.display = attributes[:'display'] if attributes[:'display'] self.user_name = attributes[:'userName'] if attributes[:'userName'] raise 'You cannot provide both :userName and :user_name' if attributes.key?(:'userName') && attributes.key?(:'user_name') self.user_name = attributes[:'user_name'] if attributes[:'user_name'] self.email = attributes[:'email'] if attributes[:'email'] end |
Instance Attribute Details
#display ⇒ String
User display name
SCIM++ Properties: - idcsPii: true - idcsSearchable: true - multiValued: false - mutability: readOnly - required: false - returned: request - type: string - uniqueness: none
59 60 61 |
# File 'lib/oci/identity_domains/models/account_mgmt_info_owner.rb', line 59 def display @display end |
#email ⇒ String
The email address of this user
SCIM++ Properties: - idcsPii: true - idcsSearchable: true - multiValued: false - mutability: readOnly - required: false - returned: request - type: string - uniqueness: none
87 88 89 |
# File 'lib/oci/identity_domains/models/account_mgmt_info_owner.rb', line 87 def email @email end |
#ref ⇒ String
User URI
SCIM++ Properties: - idcsSearchable: false - multiValued: false - mutability: readOnly - required: false - returned: default - type: reference - uniqueness: none
45 46 47 |
# File 'lib/oci/identity_domains/models/account_mgmt_info_owner.rb', line 45 def ref @ref end |
#user_name ⇒ String
User name
SCIM++ Properties: - idcsPii: true - idcsSearchable: true - multiValued: false - mutability: readOnly - required: false - returned: request - type: string - uniqueness: none
73 74 75 |
# File 'lib/oci/identity_domains/models/account_mgmt_info_owner.rb', line 73 def user_name @user_name end |
#value ⇒ String
[Required] User Identifier
SCIM++ Properties: - caseExact: true - idcsSearchable: true - multiValued: false - mutability: immutable - required: true - returned: always - type: string - uniqueness: none
32 33 34 |
# File 'lib/oci/identity_domains/models/account_mgmt_info_owner.rb', line 32 def value @value end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
90 91 92 93 94 95 96 97 98 99 100 |
# File 'lib/oci/identity_domains/models/account_mgmt_info_owner.rb', line 90 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'value': :'value', 'ref': :'$ref', 'display': :'display', 'user_name': :'userName', 'email': :'email' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
103 104 105 106 107 108 109 110 111 112 113 |
# File 'lib/oci/identity_domains/models/account_mgmt_info_owner.rb', line 103 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'value': :'String', 'ref': :'String', 'display': :'String', 'user_name': :'String', 'email': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
154 155 156 157 158 159 160 161 162 163 |
# File 'lib/oci/identity_domains/models/account_mgmt_info_owner.rb', line 154 def ==(other) return true if equal?(other) self.class == other.class && value == other.value && ref == other.ref && display == other.display && user_name == other.user_name && email == other.email end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
# File 'lib/oci/identity_domains/models/account_mgmt_info_owner.rb', line 188 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
168 169 170 |
# File 'lib/oci/identity_domains/models/account_mgmt_info_owner.rb', line 168 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
177 178 179 |
# File 'lib/oci/identity_domains/models/account_mgmt_info_owner.rb', line 177 def hash [value, ref, display, user_name, email].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
221 222 223 224 225 226 227 228 229 230 |
# File 'lib/oci/identity_domains/models/account_mgmt_info_owner.rb', line 221 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
215 216 217 |
# File 'lib/oci/identity_domains/models/account_mgmt_info_owner.rb', line 215 def to_s to_hash.to_s end |