Class: Stripe::Checkout::SessionUpdateParams::InvoiceCreation::InvoiceData

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/checkout/session_update_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) ⇒ InvoiceData

Returns a new instance of InvoiceData.



135
136
137
# File 'lib/stripe/params/checkout/session_update_params.rb', line 135

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.



133
134
135
# File 'lib/stripe/params/checkout/session_update_params.rb', line 133

def issuer
  @issuer
end