Class: Amocrm::Models::CompanyUpdateParams::Body::CustomFieldsValue::Value
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Amocrm::Models::CompanyUpdateParams::Body::CustomFieldsValue::Value
- Defined in:
- lib/amocrm/models/company_update_params.rb
Defined Under Namespace
Modules: Value
Instance Attribute Summary collapse
-
#enum_code ⇒ String?
Option code for list/select custom fields (if you use code instead of id).
-
#enum_id ⇒ Integer?
Option id for list/select custom fields (one of predefined options).
- #value ⇒ String, ...
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(value:, enum_code: nil, enum_id: nil) ⇒ Object
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 |
# File 'lib/amocrm/models/company_update_params.rb', line 167 class Value < Amocrm::Internal::Type::BaseModel # @!attribute value # # @return [String, Integer, Boolean] required :value, union: -> { Amocrm::CompanyUpdateParams::Body::CustomFieldsValue::Value::Value } # @!attribute enum_code # Option code for list/select custom fields (if you use code instead of id) # # @return [String, nil] optional :enum_code, String # @!attribute enum_id # Option id for list/select custom fields (one of predefined options) # # @return [Integer, nil] optional :enum_id, Integer # @!method initialize(value:, enum_code: nil, enum_id: nil) # @param value [String, Integer, Boolean] # # @param enum_code [String] Option code for list/select custom fields (if you use code instead of id) # # @param enum_id [Integer] Option id for list/select custom fields (one of predefined options) # @see Amocrm::Models::CompanyUpdateParams::Body::CustomFieldsValue::Value#value module Value extend Amocrm::Internal::Type::Union variant String variant Integer variant Amocrm::Internal::Type::Boolean # @!method self.variants # @return [Array(String, Integer, Boolean)] end end |
Instance Attribute Details
#enum_code ⇒ String?
Option code for list/select custom fields (if you use code instead of id)
177 |
# File 'lib/amocrm/models/company_update_params.rb', line 177 optional :enum_code, String |
#enum_id ⇒ Integer?
Option id for list/select custom fields (one of predefined options)
183 |
# File 'lib/amocrm/models/company_update_params.rb', line 183 optional :enum_id, Integer |
#value ⇒ String, ...
171 |
# File 'lib/amocrm/models/company_update_params.rb', line 171 required :value, union: -> { Amocrm::CompanyUpdateParams::Body::CustomFieldsValue::Value::Value } |