Class: Amocrm::Models::PipelineUpdateParams::Body
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Amocrm::Models::PipelineUpdateParams::Body
- Defined in:
- lib/amocrm/models/pipeline_update_params.rb
Instance Attribute Summary collapse
- #id ⇒ Integer
- #is_archive ⇒ Boolean?
- #is_main ⇒ Boolean?
- #is_unsorted_on ⇒ Boolean?
- #name ⇒ String?
- #request_id ⇒ String?
- #sort ⇒ Integer?
Instance Method Summary collapse
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(id:, is_archive: nil, is_main: nil, is_unsorted_on: nil, name: nil, request_id: nil, sort: nil) ⇒ Object
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/amocrm/models/pipeline_update_params.rb', line 19 class Body < Amocrm::Internal::Type::BaseModel # @!attribute id # # @return [Integer] required :id, Integer # @!attribute is_archive # # @return [Boolean, nil] optional :is_archive, Amocrm::Internal::Type::Boolean # @!attribute is_main # # @return [Boolean, nil] optional :is_main, Amocrm::Internal::Type::Boolean # @!attribute is_unsorted_on # # @return [Boolean, nil] optional :is_unsorted_on, Amocrm::Internal::Type::Boolean # @!attribute name # # @return [String, nil] optional :name, String # @!attribute request_id # # @return [String, nil] optional :request_id, String # @!attribute sort # # @return [Integer, nil] optional :sort, Integer # @!method initialize(id:, is_archive: nil, is_main: nil, is_unsorted_on: nil, name: nil, request_id: nil, sort: nil) # @param id [Integer] # @param is_archive [Boolean] # @param is_main [Boolean] # @param is_unsorted_on [Boolean] # @param name [String] # @param request_id [String] # @param sort [Integer] end |
Instance Attribute Details
#id ⇒ Integer
23 |
# File 'lib/amocrm/models/pipeline_update_params.rb', line 23 required :id, Integer |
#is_archive ⇒ Boolean?
28 |
# File 'lib/amocrm/models/pipeline_update_params.rb', line 28 optional :is_archive, Amocrm::Internal::Type::Boolean |
#is_main ⇒ Boolean?
33 |
# File 'lib/amocrm/models/pipeline_update_params.rb', line 33 optional :is_main, Amocrm::Internal::Type::Boolean |
#is_unsorted_on ⇒ Boolean?
38 |
# File 'lib/amocrm/models/pipeline_update_params.rb', line 38 optional :is_unsorted_on, Amocrm::Internal::Type::Boolean |
#name ⇒ String?
43 |
# File 'lib/amocrm/models/pipeline_update_params.rb', line 43 optional :name, String |
#request_id ⇒ String?
48 |
# File 'lib/amocrm/models/pipeline_update_params.rb', line 48 optional :request_id, String |
#sort ⇒ Integer?
53 |
# File 'lib/amocrm/models/pipeline_update_params.rb', line 53 optional :sort, Integer |