Class: SSOReady::GetSCIMUserResponse
- Inherits:
-
Object
- Object
- SSOReady::GetSCIMUserResponse
- Defined in:
- lib/ssoready/types/get_scim_user_response.rb
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
-
#scim_user ⇒ SSOReady::SCIMUser
readonly
The requested SCIM user.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ SSOReady::GetSCIMUserResponse
Deserialize a JSON object to an instance of GetSCIMUserResponse.
-
.validate_raw(obj:) ⇒ Void
Leveraged for Union-type generation, validate_raw attempts to parse the given hash and check each fields type against the current object’s property definitions.
Instance Method Summary collapse
- #initialize(scim_user: OMIT, additional_properties: nil) ⇒ SSOReady::GetSCIMUserResponse constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of GetSCIMUserResponse to a JSON object.
Constructor Details
#initialize(scim_user: OMIT, additional_properties: nil) ⇒ SSOReady::GetSCIMUserResponse
22 23 24 25 26 27 28 |
# File 'lib/ssoready/types/get_scim_user_response.rb', line 22 def initialize(scim_user: OMIT, additional_properties: nil) @scim_user = scim_user if scim_user != OMIT @additional_properties = additional_properties @_field_set = { "scimUser": scim_user }.reject do |_k, v| v == OMIT end end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
12 13 14 |
# File 'lib/ssoready/types/get_scim_user_response.rb', line 12 def additional_properties @additional_properties end |
#scim_user ⇒ SSOReady::SCIMUser (readonly)
Returns The requested SCIM user.
10 11 12 |
# File 'lib/ssoready/types/get_scim_user_response.rb', line 10 def scim_user @scim_user end |
Class Method Details
.from_json(json_object:) ⇒ SSOReady::GetSCIMUserResponse
Deserialize a JSON object to an instance of GetSCIMUserResponse
34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/ssoready/types/get_scim_user_response.rb', line 34 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) parsed_json = JSON.parse(json_object) if parsed_json["scimUser"].nil? scim_user = nil else scim_user = parsed_json["scimUser"].to_json scim_user = SSOReady::SCIMUser.from_json(json_object: scim_user) end new(scim_user: scim_user, additional_properties: struct) end |
.validate_raw(obj:) ⇒ Void
Leveraged for Union-type generation, validate_raw attempts to parse the given
hash and check each fields type against the current object's property
definitions.
59 60 61 |
# File 'lib/ssoready/types/get_scim_user_response.rb', line 59 def self.validate_raw(obj:) obj.scim_user.nil? || SSOReady::SCIMUser.validate_raw(obj: obj.scim_user) end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of GetSCIMUserResponse to a JSON object
49 50 51 |
# File 'lib/ssoready/types/get_scim_user_response.rb', line 49 def to_json(*_args) @_field_set&.to_json end |