Class: SSOReady::GetOrganizationResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/ssoready/types/get_organization_response.rb

Constant Summary collapse

OMIT =
Object.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(organization: OMIT, additional_properties: nil) ⇒ SSOReady::GetOrganizationResponse

Parameters:

  • organization (SSOReady::Organization) (defaults to: OMIT)

    The requested organization.

  • additional_properties (OpenStruct) (defaults to: nil)

    Additional properties unmapped to the current class definition



22
23
24
25
26
27
28
# File 'lib/ssoready/types/get_organization_response.rb', line 22

def initialize(organization: OMIT, additional_properties: nil)
  @organization = organization if organization != OMIT
  @additional_properties = additional_properties
  @_field_set = { "organization": organization }.reject do |_k, v|
    v == OMIT
  end
end

Instance Attribute Details

#additional_propertiesOpenStruct (readonly)

Returns Additional properties unmapped to the current class definition.

Returns:

  • (OpenStruct)

    Additional properties unmapped to the current class definition



12
13
14
# File 'lib/ssoready/types/get_organization_response.rb', line 12

def additional_properties
  @additional_properties
end

#organizationSSOReady::Organization (readonly)

Returns The requested organization.

Returns:



10
11
12
# File 'lib/ssoready/types/get_organization_response.rb', line 10

def organization
  @organization
end

Class Method Details

.from_json(json_object:) ⇒ SSOReady::GetOrganizationResponse

Deserialize a JSON object to an instance of GetOrganizationResponse

Parameters:

  • json_object (String)

Returns:



34
35
36
37
38
39
40
41
42
43
44
# File 'lib/ssoready/types/get_organization_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["organization"].nil?
    organization = nil
  else
    organization = parsed_json["organization"].to_json
    organization = SSOReady::Organization.from_json(json_object: organization)
  end
  new(organization: organization, 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.

Parameters:

  • obj (Object)

Returns:

  • (Void)


59
60
61
# File 'lib/ssoready/types/get_organization_response.rb', line 59

def self.validate_raw(obj:)
  obj.organization.nil? || SSOReady::Organization.validate_raw(obj: obj.organization)
end

Instance Method Details

#to_json(*_args) ⇒ String

Serialize an instance of GetOrganizationResponse to a JSON object

Returns:

  • (String)


49
50
51
# File 'lib/ssoready/types/get_organization_response.rb', line 49

def to_json(*_args)
  @_field_set&.to_json
end