Class: Clerk::Models::Operations::CreateSAMLConnectionRequestBody1

Inherits:
Object
  • Object
show all
Includes:
Crystalline::MetadataFields
Defined in:
lib/clerk/models/operations/createsamlconnection_requestbody_1.rb

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

#field, #fields, included, #marshal_single, #to_dict, #to_json

Constructor Details

#initialize(name:, domain:, provider:, domains: nil, force_authn: nil, idp_entity_id: nil, idp_sso_url: nil, idp_certificate: nil, idp_metadata_url: nil, idp_metadata: nil, organization_id: nil, attribute_mapping: nil) ⇒ CreateSAMLConnectionRequestBody1

Returns a new instance of CreateSAMLConnectionRequestBody1.



43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/clerk/models/operations/createsamlconnection_requestbody_1.rb', line 43

def initialize(name:, domain:, provider:, domains: nil, force_authn: nil, idp_entity_id: nil, idp_sso_url: nil, idp_certificate: nil, idp_metadata_url: nil, idp_metadata: nil, organization_id: nil, attribute_mapping: nil)
  @name = name
  @domain = domain
  @provider = provider
  @domains = domains
  @force_authn = force_authn
  @idp_entity_id = idp_entity_id
  @idp_sso_url = idp_sso_url
  @idp_certificate = idp_certificate
   = 
   = 
  @organization_id = organization_id
  @attribute_mapping = attribute_mapping
end

Instance Method Details

#==(other) ⇒ Object



59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/clerk/models/operations/createsamlconnection_requestbody_1.rb', line 59

def ==(other)
  return false unless other.is_a? self.class
  return false unless @name == other.name
  return false unless @domain == other.domain
  return false unless @provider == other.provider
  return false unless @domains == other.domains
  return false unless @force_authn == other.force_authn
  return false unless @idp_entity_id == other.idp_entity_id
  return false unless @idp_sso_url == other.idp_sso_url
  return false unless @idp_certificate == other.idp_certificate
  return false unless  == other.
  return false unless  == other.
  return false unless @organization_id == other.organization_id
  return false unless @attribute_mapping == other.attribute_mapping
  true
end