Class: Stripe::PaymentIntentCreateParams::PaymentDetails::Subscription

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

Defined Under Namespace

Classes: Affiliate, BillingInterval

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(affiliate: nil, auto_renewal: nil, billing_interval: nil, ends_at: nil, name: nil, starts_at: nil) ⇒ Subscription

Returns a new instance of Subscription.



909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
# File 'lib/stripe/params/payment_intent_create_params.rb', line 909

def initialize(
  affiliate: nil,
  auto_renewal: nil,
  billing_interval: nil,
  ends_at: nil,
  name: nil,
  starts_at: nil
)
  @affiliate = affiliate
  @auto_renewal = auto_renewal
  @billing_interval = billing_interval
  @ends_at = ends_at
  @name = name
  @starts_at = starts_at
end

Instance Attribute Details

#affiliateObject

Affiliate details for this purchase.



897
898
899
# File 'lib/stripe/params/payment_intent_create_params.rb', line 897

def affiliate
  @affiliate
end

#auto_renewalObject

Info whether the subscription will be auto renewed upon expiry.



899
900
901
# File 'lib/stripe/params/payment_intent_create_params.rb', line 899

def auto_renewal
  @auto_renewal
end

#billing_intervalObject

Subscription billing details for this purchase.



901
902
903
# File 'lib/stripe/params/payment_intent_create_params.rb', line 901

def billing_interval
  @billing_interval
end

#ends_atObject

Subscription end time. Measured in seconds since the Unix epoch.



903
904
905
# File 'lib/stripe/params/payment_intent_create_params.rb', line 903

def ends_at
  @ends_at
end

#nameObject

Name of the product on subscription. e.g. Apple Music Subscription



905
906
907
# File 'lib/stripe/params/payment_intent_create_params.rb', line 905

def name
  @name
end

#starts_atObject

Subscription start time. Measured in seconds since the Unix epoch.



907
908
909
# File 'lib/stripe/params/payment_intent_create_params.rb', line 907

def starts_at
  @starts_at
end