Class: Amocrm::Models::CustomerGetByIDResponse::Customer::CustomFieldsValue::Value

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

Defined Under Namespace

Modules: Value

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(value:, enum_code: nil, enum_id: nil) ⇒ Object

Parameters:

  • value (String, Integer, Boolean)
  • enum_code (String) (defaults to: nil)

    Option code for list/select custom fields (if you use code instead of id)

  • enum_id (Integer) (defaults to: nil)

    Option id for list/select custom fields (one of predefined options)



303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
# File 'lib/amocrm/models/customer_get_by_id_response.rb', line 303

class Value < Amocrm::Internal::Type::BaseModel
  # @!attribute value
  #
  #   @return [String, Integer, Boolean]
  required :value,
           union: -> { Amocrm::Models::CustomerGetByIDResponse::Customer::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::CustomerGetByIDResponse::Customer::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_codeString?

Option code for list/select custom fields (if you use code instead of id)

Returns:

  • (String, nil)


314
# File 'lib/amocrm/models/customer_get_by_id_response.rb', line 314

optional :enum_code, String

#enum_idInteger?

Option id for list/select custom fields (one of predefined options)

Returns:

  • (Integer, nil)


320
# File 'lib/amocrm/models/customer_get_by_id_response.rb', line 320

optional :enum_id, Integer

#valueString, ...

Returns:

  • (String, Integer, Boolean)


307
308
# File 'lib/amocrm/models/customer_get_by_id_response.rb', line 307

required :value,
union: -> { Amocrm::Models::CustomerGetByIDResponse::Customer::CustomFieldsValue::Value::Value }