Class: Stripe::PaymentLinkCreateParams::SubscriptionData::InvoiceSettings

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

Defined Under Namespace

Classes: Issuer

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(issuer: nil) ⇒ InvoiceSettings

Returns a new instance of InvoiceSettings.



668
669
670
# File 'lib/stripe/params/payment_link_create_params.rb', line 668

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.



666
667
668
# File 'lib/stripe/params/payment_link_create_params.rb', line 666

def issuer
  @issuer
end