Class: Clerk::Models::Operations::UpdateInstanceOAuthApplicationSettingsRequest

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

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

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

Constructor Details

#initialize(dynamic_oauth_client_registration: nil, default_scopes: nil, oauth_jwt_access_tokens: nil, client_id_metadata_documents_advertised: nil, client_id_metadata_documents_only_allow_pre_registered_clients: nil, client_id_metadata_documents_block_implicitly_allowed_clients: nil) ⇒ UpdateInstanceOAuthApplicationSettingsRequest

Returns a new instance of UpdateInstanceOAuthApplicationSettingsRequest.



29
30
31
32
33
34
35
36
# File 'lib/clerk/models/operations/updateinstanceoauthapplicationsettings_request.rb', line 29

def initialize(dynamic_oauth_client_registration: nil, default_scopes: nil, oauth_jwt_access_tokens: nil, client_id_metadata_documents_advertised: nil, client_id_metadata_documents_only_allow_pre_registered_clients: nil, client_id_metadata_documents_block_implicitly_allowed_clients: nil)
  @dynamic_oauth_client_registration = dynamic_oauth_client_registration
  @default_scopes = default_scopes
  @oauth_jwt_access_tokens = oauth_jwt_access_tokens
  @client_id_metadata_documents_advertised = 
  @client_id_metadata_documents_only_allow_pre_registered_clients = 
  @client_id_metadata_documents_block_implicitly_allowed_clients = 
end

Instance Method Details

#==(other) ⇒ Object



39
40
41
42
43
44
45
46
47
48
# File 'lib/clerk/models/operations/updateinstanceoauthapplicationsettings_request.rb', line 39

def ==(other)
  return false unless other.is_a? self.class
  return false unless @dynamic_oauth_client_registration == other.dynamic_oauth_client_registration
  return false unless @default_scopes == other.default_scopes
  return false unless @oauth_jwt_access_tokens == other.oauth_jwt_access_tokens
  return false unless @client_id_metadata_documents_advertised == other.
  return false unless @client_id_metadata_documents_only_allow_pre_registered_clients == other.
  return false unless @client_id_metadata_documents_block_implicitly_allowed_clients == other.
  true
end