Class: Stripe::SubscriptionCreateParams::InvoiceSettings
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::SubscriptionCreateParams::InvoiceSettings
- Defined in:
- lib/stripe/params/subscription_create_params.rb
Defined Under Namespace
Classes: Issuer
Instance Attribute Summary collapse
-
#account_tax_ids ⇒ Object
The account tax IDs associated with the subscription.
-
#issuer ⇒ Object
The connected account that issues the invoice.
Instance Method Summary collapse
-
#initialize(account_tax_ids: nil, issuer: nil) ⇒ InvoiceSettings
constructor
A new instance of InvoiceSettings.
Methods inherited from RequestParams
Constructor Details
#initialize(account_tax_ids: nil, issuer: nil) ⇒ InvoiceSettings
Returns a new instance of InvoiceSettings.
225 226 227 228 |
# File 'lib/stripe/params/subscription_create_params.rb', line 225 def initialize(account_tax_ids: nil, issuer: nil) @account_tax_ids = account_tax_ids @issuer = issuer end |
Instance Attribute Details
#account_tax_ids ⇒ Object
The account tax IDs associated with the subscription. Will be set on invoices generated by the subscription.
221 222 223 |
# File 'lib/stripe/params/subscription_create_params.rb', line 221 def account_tax_ids @account_tax_ids end |
#issuer ⇒ Object
The connected account that issues the invoice. The invoice is presented with the branding and support information of the specified account.
223 224 225 |
# File 'lib/stripe/params/subscription_create_params.rb', line 223 def issuer @issuer end |