Class: Stripe::PaymentLinkService::UpdateParams::InvoiceCreation::InvoiceData::Issuer

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



1009
1010
1011
1012
# File 'lib/stripe/services/payment_link_service.rb', line 1009

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

Instance Attribute Details

#accountObject

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



1004
1005
1006
# File 'lib/stripe/services/payment_link_service.rb', line 1004

def 
  @account
end

#typeObject

Type of the account referenced in the request.



1007
1008
1009
# File 'lib/stripe/services/payment_link_service.rb', line 1007

def type
  @type
end