Class: Stripe::PaymentIntentCreateParams::AmountDetails::LineItem::PaymentMethodOptions::Paypal

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_intent_create_params.rb

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(category: nil, description: nil, sold_by: nil) ⇒ Paypal

Returns a new instance of Paypal.



81
82
83
84
85
# File 'lib/stripe/params/payment_intent_create_params.rb', line 81

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.



75
76
77
# File 'lib/stripe/params/payment_intent_create_params.rb', line 75

def category
  @category
end

#descriptionObject

Description of the line item.



77
78
79
# File 'lib/stripe/params/payment_intent_create_params.rb', line 77

def description
  @description
end

#sold_byObject

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



79
80
81
# File 'lib/stripe/params/payment_intent_create_params.rb', line 79

def sold_by
  @sold_by
end