Class: Stripe::ApplePayDomainCreateParams

Inherits:
RequestParams show all
Defined in:
lib/stripe/params/apple_pay_domain_create_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

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

Returns a new instance of ApplePayDomainCreateParams.



11
12
13
14
# File 'lib/stripe/params/apple_pay_domain_create_params.rb', line 11

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



7
8
9
# File 'lib/stripe/params/apple_pay_domain_create_params.rb', line 7

def domain_name
  @domain_name
end

#expandObject

Specifies which fields in the response should be expanded.



9
10
11
# File 'lib/stripe/params/apple_pay_domain_create_params.rb', line 9

def expand
  @expand
end