Class: Stripe::SubscriptionService::CreateParams::InvoiceSettings::Issuer

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/subscription_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.



1247
1248
1249
1250
# File 'lib/stripe/services/subscription_service.rb', line 1247

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

Instance Attribute Details

#accountObject

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



1243
1244
1245
# File 'lib/stripe/services/subscription_service.rb', line 1243

def 
  @account
end

#typeObject

Type of the account referenced in the request.



1245
1246
1247
# File 'lib/stripe/services/subscription_service.rb', line 1245

def type
  @type
end