Class: Stripe::Billing::CreditBalanceSummaryRetrieveParams::Filter
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Billing::CreditBalanceSummaryRetrieveParams::Filter
- Defined in:
- lib/stripe/params/billing/credit_balance_summary_retrieve_params.rb
Defined Under Namespace
Classes: ApplicabilityScope
Instance Attribute Summary collapse
-
#applicability_scope ⇒ Object
The billing credit applicability scope for which to fetch credit balance summary.
-
#credit_grant ⇒ Object
The credit grant for which to fetch credit balance summary.
-
#type ⇒ Object
Specify the type of this filter.
Instance Method Summary collapse
-
#initialize(applicability_scope: nil, credit_grant: nil, type: nil) ⇒ Filter
constructor
A new instance of Filter.
Methods inherited from RequestParams
Constructor Details
#initialize(applicability_scope: nil, credit_grant: nil, type: nil) ⇒ Filter
Returns a new instance of Filter.
34 35 36 37 38 |
# File 'lib/stripe/params/billing/credit_balance_summary_retrieve_params.rb', line 34 def initialize(applicability_scope: nil, credit_grant: nil, type: nil) @applicability_scope = applicability_scope @credit_grant = credit_grant @type = type end |
Instance Attribute Details
#applicability_scope ⇒ Object
The billing credit applicability scope for which to fetch credit balance summary.
28 29 30 |
# File 'lib/stripe/params/billing/credit_balance_summary_retrieve_params.rb', line 28 def applicability_scope @applicability_scope end |
#credit_grant ⇒ Object
The credit grant for which to fetch credit balance summary.
30 31 32 |
# File 'lib/stripe/params/billing/credit_balance_summary_retrieve_params.rb', line 30 def credit_grant @credit_grant end |
#type ⇒ Object
Specify the type of this filter.
32 33 34 |
# File 'lib/stripe/params/billing/credit_balance_summary_retrieve_params.rb', line 32 def type @type end |