Class: Amocrm::Models::LeadUpdateByIDParams::Embedded::Metadata
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Amocrm::Models::LeadUpdateByIDParams::Embedded::Metadata
- Defined in:
- lib/amocrm/models/lead_update_by_id_params.rb
Overview
Defined Under Namespace
Instance Attribute Summary collapse
-
#category ⇒ Symbol, ...
Unsorted category.
-
#form_id ⇒ String, ...
Form id in your system (string or numeric).
-
#form_name ⇒ String?
Form name (shown in amoCRM).
-
#form_page ⇒ String?
Page URL where form lives.
-
#form_sent_at ⇒ Integer?
Unix timestamp (seconds) when the form was submitted.
-
#form_type ⇒ Integer?
Form type code from amoCRM, use only if you know it.
-
#ip ⇒ String?
IP address of the submitter.
-
#referer ⇒ String?
Referrer URL.
-
#visitor_uid ⇒ String?
Visitor uid from tracking, if you have it.
Class Method 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(category: nil, form_id: nil, form_name: nil, form_page: nil, form_sent_at: nil, form_type: nil, ip: nil, referer: nil, visitor_uid: nil) ⇒ Object
|
|
# File 'lib/amocrm/models/lead_update_by_id_params.rb', line 332
|
Instance Attribute Details
#category ⇒ Symbol, ...
Unsorted category
282 |
# File 'lib/amocrm/models/lead_update_by_id_params.rb', line 282 optional :category, enum: -> { Amocrm::LeadUpdateByIDParams::Embedded::Metadata::Category } |
#form_id ⇒ String, ...
Form id in your system (string or numeric)
288 |
# File 'lib/amocrm/models/lead_update_by_id_params.rb', line 288 optional :form_id, union: -> { Amocrm::LeadUpdateByIDParams::Embedded::Metadata::FormID } |
#form_name ⇒ String?
Form name (shown in amoCRM)
294 |
# File 'lib/amocrm/models/lead_update_by_id_params.rb', line 294 optional :form_name, String |
#form_page ⇒ String?
Page URL where form lives
300 |
# File 'lib/amocrm/models/lead_update_by_id_params.rb', line 300 optional :form_page, String |
#form_sent_at ⇒ Integer?
Unix timestamp (seconds) when the form was submitted
306 |
# File 'lib/amocrm/models/lead_update_by_id_params.rb', line 306 optional :form_sent_at, Integer |
#form_type ⇒ Integer?
Form type code from amoCRM, use only if you know it
312 |
# File 'lib/amocrm/models/lead_update_by_id_params.rb', line 312 optional :form_type, Integer |
#ip ⇒ String?
IP address of the submitter
318 |
# File 'lib/amocrm/models/lead_update_by_id_params.rb', line 318 optional :ip, String |
#referer ⇒ String?
Referrer URL
324 |
# File 'lib/amocrm/models/lead_update_by_id_params.rb', line 324 optional :referer, String |
#visitor_uid ⇒ String?
Visitor uid from tracking, if you have it
330 |
# File 'lib/amocrm/models/lead_update_by_id_params.rb', line 330 optional :visitor_uid, String |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/amocrm/models/lead_update_by_id_params.rb', line 362
|