Class: Stripe::V2::Core::AccountCreateParams::Identity::BusinessDetails::MonthlyEstimatedRevenue

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/core/account_create_params.rb

Defined Under Namespace

Classes: Amount

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, new, #to_h

Constructor Details

#initialize(amount: nil) ⇒ MonthlyEstimatedRevenue

Returns a new instance of MonthlyEstimatedRevenue.



2963
2964
2965
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2963

def initialize(amount: nil)
  @amount = amount
end

Instance Attribute Details

#amountObject

A non-negative integer representing the amount in the smallest currency unit.



2961
2962
2963
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2961

def amount
  @amount
end