Class: Stripe::ApplePayDomainService::CreateParams

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/apple_pay_domain_service.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(domain_name: nil, expand: nil) ⇒ CreateParams

Returns a new instance of CreateParams.



50
51
52
53
# File 'lib/stripe/services/apple_pay_domain_service.rb', line 50

def initialize(domain_name: nil, expand: nil)
  @domain_name = domain_name
  @expand = expand
end

Instance Attribute Details

#domain_nameObject

Attribute for param field domain_name



46
47
48
# File 'lib/stripe/services/apple_pay_domain_service.rb', line 46

def domain_name
  @domain_name
end

#expandObject

Specifies which fields in the response should be expanded.



48
49
50
# File 'lib/stripe/services/apple_pay_domain_service.rb', line 48

def expand
  @expand
end