Class: Amocrm::Models::LeadListParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Amocrm::Models::LeadListParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/amocrm/models/lead_list_params.rb
Overview
Defined Under Namespace
Modules: Query
Instance Attribute Summary collapse
-
#filter ⇒ Object?
Filtering parameters, see filters API.
-
#limit ⇒ Integer?
Pagination limit.
-
#order ⇒ Object?
Sorting, e.g.
-
#page ⇒ Integer?
Pagination page.
-
#query ⇒ String, ...
Search by query string or id.
-
#with ⇒ String?
Expand related entities; comma-separated values.
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(filter: nil, limit: nil, order: nil, page: nil, query: nil, with: nil, request_options: {}) ⇒ Object
|
|
# File 'lib/amocrm/models/lead_list_params.rb', line 46
|
Instance Attribute Details
#filter ⇒ Object?
Filtering parameters, see filters API
14 |
# File 'lib/amocrm/models/lead_list_params.rb', line 14 optional :filter, Amocrm::Internal::Type::Unknown |
#limit ⇒ Integer?
Pagination limit
20 |
# File 'lib/amocrm/models/lead_list_params.rb', line 20 optional :limit, Integer |
#order ⇒ Object?
Sorting, e.g. order=asc
26 |
# File 'lib/amocrm/models/lead_list_params.rb', line 26 optional :order, Amocrm::Internal::Type::Unknown |
#page ⇒ Integer?
Pagination page
32 |
# File 'lib/amocrm/models/lead_list_params.rb', line 32 optional :page, Integer |
#query ⇒ String, ...
Search by query string or id
38 |
# File 'lib/amocrm/models/lead_list_params.rb', line 38 optional :query, union: -> { Amocrm::LeadListParams::Query } |
#with ⇒ String?
Expand related entities; comma-separated values
44 |
# File 'lib/amocrm/models/lead_list_params.rb', line 44 optional :with, String |