Class: Stripe::PaymentLinkService::CreateParams::SubscriptionData::InvoiceSettings::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.



585
586
587
588
# File 'lib/stripe/services/payment_link_service.rb', line 585

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

Instance Attribute Details

#accountObject

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



581
582
583
# File 'lib/stripe/services/payment_link_service.rb', line 581

def 
  @account
end

#typeObject

Type of the account referenced in the request.



583
584
585
# File 'lib/stripe/services/payment_link_service.rb', line 583

def type
  @type
end