Class: Onlyfans::Models::FanListLatestParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Onlyfans::Models::FanListLatestParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/onlyfans/models/fan_list_latest_params.rb
Overview
Defined Under Namespace
Modules: Type
Instance Attribute Summary collapse
- #account ⇒ String
-
#end_date ⇒ String?
End date for filtering (required with start_date).
-
#limit ⇒ Integer?
Number of fans to return (1-50).
-
#offset ⇒ Integer?
Number of fans to skip.
-
#start_date ⇒ String?
Start date for filtering (required with end_date).
-
#type ⇒ Symbol, ...
Filter by type: total, renew, or new.
Attributes included from Internal::Type::RequestParameters
Instance Method Summary collapse
-
#initialize(account:, end_date: nil, limit: nil, offset: nil, start_date: nil, type: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see FanListLatestParams 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(account:, end_date: nil, limit: nil, offset: nil, start_date: nil, type: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Onlyfans::Models::FanListLatestParams for more details.
|
|
# File 'lib/onlyfans/models/fan_list_latest_params.rb', line 48
|
Instance Attribute Details
#account ⇒ String
13 |
# File 'lib/onlyfans/models/fan_list_latest_params.rb', line 13 required :account, String |
#end_date ⇒ String?
End date for filtering (required with start_date). This field is required when start_date is present.
20 |
# File 'lib/onlyfans/models/fan_list_latest_params.rb', line 20 optional :end_date, String, nil?: true |
#limit ⇒ Integer?
Number of fans to return (1-50). Must be at least 1. Must not be greater than 100.
27 |
# File 'lib/onlyfans/models/fan_list_latest_params.rb', line 27 optional :limit, Integer |
#offset ⇒ Integer?
Number of fans to skip. Must be at least 0.
33 |
# File 'lib/onlyfans/models/fan_list_latest_params.rb', line 33 optional :offset, Integer |
#start_date ⇒ String?
Start date for filtering (required with end_date). This field is required when end_date is present.
40 |
# File 'lib/onlyfans/models/fan_list_latest_params.rb', line 40 optional :start_date, String, nil?: true |
#type ⇒ Symbol, ...
Filter by type: total, renew, or new.
46 |
# File 'lib/onlyfans/models/fan_list_latest_params.rb', line 46 optional :type, enum: -> { Onlyfans::FanListLatestParams::Type }, nil?: true |