Class: Stripe::SubscriptionService::CreateParams::InvoiceSettings::Issuer

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



951
952
953
954
# File 'lib/stripe/services/subscription_service.rb', line 951

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

Instance Attribute Details

#accountObject

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



947
948
949
# File 'lib/stripe/services/subscription_service.rb', line 947

def 
  @account
end

#typeObject

Type of the account referenced in the request.



949
950
951
# File 'lib/stripe/services/subscription_service.rb', line 949

def type
  @type
end