Class: SSOReady::GetSAMLConnectionResponse
- Inherits:
-
Object
- Object
- SSOReady::GetSAMLConnectionResponse
- Defined in:
- lib/ssoready/types/get_saml_connection_response.rb
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
-
#saml_connection ⇒ SSOReady::SAMLConnection
readonly
The requested SAML connection.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ SSOReady::GetSAMLConnectionResponse
Deserialize a JSON object to an instance of GetSAMLConnectionResponse.
-
.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(saml_connection: OMIT, additional_properties: nil) ⇒ SSOReady::GetSAMLConnectionResponse constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of GetSAMLConnectionResponse to a JSON object.
Constructor Details
#initialize(saml_connection: OMIT, additional_properties: nil) ⇒ SSOReady::GetSAMLConnectionResponse
22 23 24 25 26 27 28 |
# File 'lib/ssoready/types/get_saml_connection_response.rb', line 22 def initialize(saml_connection: OMIT, additional_properties: nil) @saml_connection = saml_connection if saml_connection != OMIT @additional_properties = additional_properties @_field_set = { "samlConnection": saml_connection }.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_saml_connection_response.rb', line 12 def additional_properties @additional_properties end |
#saml_connection ⇒ SSOReady::SAMLConnection (readonly)
Returns The requested SAML connection.
10 11 12 |
# File 'lib/ssoready/types/get_saml_connection_response.rb', line 10 def saml_connection @saml_connection end |
Class Method Details
.from_json(json_object:) ⇒ SSOReady::GetSAMLConnectionResponse
Deserialize a JSON object to an instance of GetSAMLConnectionResponse
34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/ssoready/types/get_saml_connection_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["samlConnection"].nil? saml_connection = nil else saml_connection = parsed_json["samlConnection"].to_json saml_connection = SSOReady::SAMLConnection.from_json(json_object: saml_connection) end new(saml_connection: saml_connection, 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_saml_connection_response.rb', line 59 def self.validate_raw(obj:) obj.saml_connection.nil? || SSOReady::SAMLConnection.validate_raw(obj: obj.saml_connection) end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of GetSAMLConnectionResponse to a JSON object
49 50 51 |
# File 'lib/ssoready/types/get_saml_connection_response.rb', line 49 def to_json(*_args) @_field_set&.to_json end |