Class: Stripe::PaymentIntentService::IncrementAuthorizationParams::AmountDetails::LineItem::PaymentMethodOptions::Paypal

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/payment_intent_service.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(category: nil, description: nil, sold_by: nil) ⇒ Paypal

Returns a new instance of Paypal.



12456
12457
12458
12459
12460
# File 'lib/stripe/services/payment_intent_service.rb', line 12456

def initialize(category: nil, description: nil, sold_by: nil)
  @category = category
  @description = description
  @sold_by = sold_by
end

Instance Attribute Details

#categoryObject

Type of the line item.



12450
12451
12452
# File 'lib/stripe/services/payment_intent_service.rb', line 12450

def category
  @category
end

#descriptionObject

Description of the line item.



12452
12453
12454
# File 'lib/stripe/services/payment_intent_service.rb', line 12452

def description
  @description
end

#sold_byObject

The Stripe account ID of the connected account that sells the item.



12454
12455
12456
# File 'lib/stripe/services/payment_intent_service.rb', line 12454

def sold_by
  @sold_by
end