Class: Dodopayments::Models::SubscriptionListParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Dodopayments::Models::SubscriptionListParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/dodopayments/models/subscription_list_params.rb
Overview
Defined Under Namespace
Modules: Status
Instance Attribute Summary collapse
-
#brand_id ⇒ String?
filter by Brand id.
-
#created_at_gte ⇒ Time?
Get events after this created time.
-
#created_at_lte ⇒ Time?
Get events created before this time.
-
#customer_id ⇒ String?
Filter by customer id.
-
#page_number ⇒ Integer?
Page number default is 0.
-
#page_size ⇒ Integer?
Page size default is 10 max is 100.
-
#status ⇒ Symbol, ...
Filter by status.
Attributes included from Internal::Type::RequestParameters
Instance Method Summary collapse
Methods included from Internal::Type::RequestParameters::Converter
Methods included from Internal::Type::RequestParameters
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(brand_id: nil, created_at_gte: nil, created_at_lte: nil, customer_id: nil, page_number: nil, page_size: nil, status: nil, request_options: {}) ⇒ Object
|
|
# File 'lib/dodopayments/models/subscription_list_params.rb', line 52
|
Instance Attribute Details
#brand_id ⇒ String?
filter by Brand id
14 |
# File 'lib/dodopayments/models/subscription_list_params.rb', line 14 optional :brand_id, String |
#created_at_gte ⇒ Time?
Get events after this created time
20 |
# File 'lib/dodopayments/models/subscription_list_params.rb', line 20 optional :created_at_gte, Time |
#created_at_lte ⇒ Time?
Get events created before this time
26 |
# File 'lib/dodopayments/models/subscription_list_params.rb', line 26 optional :created_at_lte, Time |
#customer_id ⇒ String?
Filter by customer id
32 |
# File 'lib/dodopayments/models/subscription_list_params.rb', line 32 optional :customer_id, String |
#page_number ⇒ Integer?
Page number default is 0
38 |
# File 'lib/dodopayments/models/subscription_list_params.rb', line 38 optional :page_number, Integer |
#page_size ⇒ Integer?
Page size default is 10 max is 100
44 |
# File 'lib/dodopayments/models/subscription_list_params.rb', line 44 optional :page_size, Integer |
#status ⇒ Symbol, ...
Filter by status
50 |
# File 'lib/dodopayments/models/subscription_list_params.rb', line 50 optional :status, enum: -> { Dodopayments::SubscriptionListParams::Status } |