Class: Clerk::Models::Operations::GetPublicInterstitialRequest

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

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

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

Constructor Details

#initialize(frontend_api_query_parameter: nil, frontend_api_query_parameter1: nil, publishable_key: nil, proxy_url: nil, domain: nil, sign_in_url: nil, use_domain_for_script: nil) ⇒ GetPublicInterstitialRequest

Returns a new instance of GetPublicInterstitialRequest.



33
34
35
36
37
38
39
40
41
# File 'lib/clerk/models/operations/getpublicinterstitial_request.rb', line 33

def initialize(frontend_api_query_parameter: nil, frontend_api_query_parameter1: nil, publishable_key: nil, proxy_url: nil, domain: nil, sign_in_url: nil, use_domain_for_script: nil)
  @frontend_api_query_parameter = frontend_api_query_parameter
  @frontend_api_query_parameter1 = frontend_api_query_parameter1
  @publishable_key = publishable_key
  @proxy_url = proxy_url
  @domain = domain
  @sign_in_url = 
  @use_domain_for_script = use_domain_for_script
end

Instance Method Details

#==(other) ⇒ Object



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

def ==(other)
  return false unless other.is_a? self.class
  return false unless @frontend_api_query_parameter == other.frontend_api_query_parameter
  return false unless @frontend_api_query_parameter1 == other.frontend_api_query_parameter1
  return false unless @publishable_key == other.publishable_key
  return false unless @proxy_url == other.proxy_url
  return false unless @domain == other.domain
  return false unless @sign_in_url == other.
  return false unless @use_domain_for_script == other.use_domain_for_script
  true
end