Class: Stripe::PaymentLinkUpdateParams::SubscriptionData::InvoiceSettings

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_link_update_params.rb

Defined Under Namespace

Classes: Issuer

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(issuer: nil) ⇒ InvoiceSettings

Returns a new instance of InvoiceSettings.



411
412
413
# File 'lib/stripe/params/payment_link_update_params.rb', line 411

def initialize(issuer: nil)
  @issuer = issuer
end

Instance Attribute Details

#issuerObject

The connected account that issues the invoice. The invoice is presented with the branding and support information of the specified account.



409
410
411
# File 'lib/stripe/params/payment_link_update_params.rb', line 409

def issuer
  @issuer
end