Class: Stripe::PaymentLinkService::UpdateParams::SubscriptionData::InvoiceSettings::Issuer

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(account: nil, type: nil) ⇒ Issuer

Returns a new instance of Issuer.



1074
1075
1076
1077
# File 'lib/stripe/services/payment_link_service.rb', line 1074

def initialize(account: nil, type: nil)
  @account = 
  @type = type
end

Instance Attribute Details

#accountObject

The connected account being referenced when ‘type` is `account`.



1070
1071
1072
# File 'lib/stripe/services/payment_link_service.rb', line 1070

def 
  @account
end

#typeObject

Type of the account referenced in the request.



1072
1073
1074
# File 'lib/stripe/services/payment_link_service.rb', line 1072

def type
  @type
end