Class: Amocrm::Models::PipelineCreateParams::Body::Embedded::Status::Description

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/amocrm/models/pipeline_create_params.rb

Instance Attribute Summary collapse

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: nil, description: nil, level: nil) ⇒ Object

Parameters:

  • id (Integer) (defaults to: nil)
  • description (String) (defaults to: nil)
  • level (String) (defaults to: nil)


103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# File 'lib/amocrm/models/pipeline_create_params.rb', line 103

class Description < Amocrm::Internal::Type::BaseModel
  # @!attribute id
  #
  #   @return [Integer, nil]
  optional :id, Integer

  # @!attribute description
  #
  #   @return [String, nil]
  optional :description, String

  # @!attribute level
  #
  #   @return [String, nil]
  optional :level, String

  # @!method initialize(id: nil, description: nil, level: nil)
  #   @param id [Integer]
  #   @param description [String]
  #   @param level [String]
end

Instance Attribute Details

#descriptionString?

Returns:

  • (String, nil)


112
# File 'lib/amocrm/models/pipeline_create_params.rb', line 112

optional :description, String

#idInteger?

Returns:

  • (Integer, nil)


107
# File 'lib/amocrm/models/pipeline_create_params.rb', line 107

optional :id, Integer

#levelString?

Returns:

  • (String, nil)


117
# File 'lib/amocrm/models/pipeline_create_params.rb', line 117

optional :level, String