Class: Amocrm::Models::LeadUpdateParams::Body::Embedded::Metadata
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Amocrm::Models::LeadUpdateParams::Body::Embedded::Metadata
- Defined in:
- lib/amocrm/models/lead_update_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_params.rb', line 342
|
Instance Attribute Details
#category ⇒ Symbol, ...
Unsorted category
292 |
# File 'lib/amocrm/models/lead_update_params.rb', line 292 optional :category, enum: -> { Amocrm::LeadUpdateParams::Body::Embedded::Metadata::Category } |
#form_id ⇒ String, ...
Form id in your system (string or numeric)
298 |
# File 'lib/amocrm/models/lead_update_params.rb', line 298 optional :form_id, union: -> { Amocrm::LeadUpdateParams::Body::Embedded::Metadata::FormID } |
#form_name ⇒ String?
Form name (shown in amoCRM)
304 |
# File 'lib/amocrm/models/lead_update_params.rb', line 304 optional :form_name, String |
#form_page ⇒ String?
Page URL where form lives
310 |
# File 'lib/amocrm/models/lead_update_params.rb', line 310 optional :form_page, String |
#form_sent_at ⇒ Integer?
Unix timestamp (seconds) when the form was submitted
316 |
# File 'lib/amocrm/models/lead_update_params.rb', line 316 optional :form_sent_at, Integer |
#form_type ⇒ Integer?
Form type code from amoCRM, use only if you know it
322 |
# File 'lib/amocrm/models/lead_update_params.rb', line 322 optional :form_type, Integer |
#ip ⇒ String?
IP address of the submitter
328 |
# File 'lib/amocrm/models/lead_update_params.rb', line 328 optional :ip, String |
#referer ⇒ String?
Referrer URL
334 |
# File 'lib/amocrm/models/lead_update_params.rb', line 334 optional :referer, String |
#visitor_uid ⇒ String?
Visitor uid from tracking, if you have it
340 |
# File 'lib/amocrm/models/lead_update_params.rb', line 340 optional :visitor_uid, String |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/amocrm/models/lead_update_params.rb', line 372
|