Class: Orb::Models::SubscriptionFetchScheduleParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Orb::Models::SubscriptionFetchScheduleParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/orb/models/subscription_fetch_schedule_params.rb
Overview
Instance Attribute Summary collapse
-
#cursor ⇒ String?
Cursor for pagination.
-
#limit ⇒ Integer?
The number of items to fetch.
- #start_date_gt ⇒ Time?
- #start_date_gte ⇒ Time?
- #start_date_lt ⇒ Time?
- #start_date_lte ⇒ Time?
Attributes included from Internal::Type::RequestParameters
Instance Method Summary collapse
-
#initialize(cursor: nil, limit: nil, start_date_gt: nil, start_date_gte: nil, start_date_lt: nil, start_date_lte: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see SubscriptionFetchScheduleParams for more details.
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(cursor: nil, limit: nil, start_date_gt: nil, start_date_gte: nil, start_date_lt: nil, start_date_lte: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Orb::Models::SubscriptionFetchScheduleParams for more details.
|
|
# File 'lib/orb/models/subscription_fetch_schedule_params.rb', line 43
|
Instance Attribute Details
#cursor ⇒ String?
Cursor for pagination. This can be populated by the ‘next_cursor` value returned from the initial request.
15 |
# File 'lib/orb/models/subscription_fetch_schedule_params.rb', line 15 optional :cursor, String, nil?: true |
#limit ⇒ Integer?
The number of items to fetch. Defaults to 20.
21 |
# File 'lib/orb/models/subscription_fetch_schedule_params.rb', line 21 optional :limit, Integer |
#start_date_gt ⇒ Time?
26 |
# File 'lib/orb/models/subscription_fetch_schedule_params.rb', line 26 optional :start_date_gt, Time, nil?: true |
#start_date_gte ⇒ Time?
31 |
# File 'lib/orb/models/subscription_fetch_schedule_params.rb', line 31 optional :start_date_gte, Time, nil?: true |
#start_date_lt ⇒ Time?
36 |
# File 'lib/orb/models/subscription_fetch_schedule_params.rb', line 36 optional :start_date_lt, Time, nil?: true |
#start_date_lte ⇒ Time?
41 |
# File 'lib/orb/models/subscription_fetch_schedule_params.rb', line 41 optional :start_date_lte, Time, nil?: true |