Class: Dodopayments::Models::DisputeListParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Dodopayments::Models::DisputeListParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/dodopayments/models/dispute_list_params.rb
Overview
Defined Under Namespace
Modules: DisputeStage, DisputeStatus
Instance Attribute Summary collapse
-
#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.
-
#dispute_stage ⇒ Symbol, ...
Filter by dispute stage.
-
#dispute_status ⇒ Symbol, ...
Filter by dispute status.
-
#page_number ⇒ Integer?
Page number default is 0.
-
#page_size ⇒ Integer?
Page size default is 10 max is 100.
Attributes included from Internal::Type::RequestParameters
Class Method Summary collapse
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(created_at_gte: nil, created_at_lte: nil, customer_id: nil, dispute_stage: nil, dispute_status: nil, page_number: nil, page_size: nil, request_options: {}) ⇒ Object
|
|
# File 'lib/dodopayments/models/dispute_list_params.rb', line 52
|
Instance Attribute Details
#created_at_gte ⇒ Time?
Get events after this created time
14 |
# File 'lib/dodopayments/models/dispute_list_params.rb', line 14 optional :created_at_gte, Time |
#created_at_lte ⇒ Time?
Get events created before this time
20 |
# File 'lib/dodopayments/models/dispute_list_params.rb', line 20 optional :created_at_lte, Time |
#customer_id ⇒ String?
Filter by customer_id
26 |
# File 'lib/dodopayments/models/dispute_list_params.rb', line 26 optional :customer_id, String |
#dispute_stage ⇒ Symbol, ...
Filter by dispute stage
32 |
# File 'lib/dodopayments/models/dispute_list_params.rb', line 32 optional :dispute_stage, enum: -> { Dodopayments::DisputeListParams::DisputeStage } |
#dispute_status ⇒ Symbol, ...
Filter by dispute status
38 |
# File 'lib/dodopayments/models/dispute_list_params.rb', line 38 optional :dispute_status, enum: -> { Dodopayments::DisputeListParams::DisputeStatus } |
#page_number ⇒ Integer?
Page number default is 0
44 |
# File 'lib/dodopayments/models/dispute_list_params.rb', line 44 optional :page_number, Integer |
#page_size ⇒ Integer?
Page size default is 10 max is 100
50 |
# File 'lib/dodopayments/models/dispute_list_params.rb', line 50 optional :page_size, Integer |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/dodopayments/models/dispute_list_params.rb', line 77
|