Class: Zavudev::Models::Senders::WhatsAppSyncStatus
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Zavudev::Models::Senders::WhatsAppSyncStatus
- Defined in:
- lib/zavudev/models/senders/whats_app_sync_status.rb
Defined Under Namespace
Modules: Status
Instance Attribute Summary collapse
-
#contacts ⇒ Zavudev::Models::Senders::WhatsAppSyncContacts
Contacts sync status details.
-
#history ⇒ Zavudev::Models::Senders::WhatsAppSyncHistory
History sync status details.
-
#is_coexistence ⇒ Boolean
Whether the account is in coexistence mode.
-
#status ⇒ Symbol, Zavudev::Models::Senders::WhatsAppSyncStatus::Status
WhatsApp account status.
Instance Method Summary collapse
-
#initialize(contacts:, history:, is_coexistence:, status:) ⇒ Object
constructor
WhatsApp coexistence sync status.
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(contacts:, history:, is_coexistence:, status:) ⇒ Object
WhatsApp coexistence sync status.
|
|
# File 'lib/zavudev/models/senders/whats_app_sync_status.rb', line 31
|
Instance Attribute Details
#contacts ⇒ Zavudev::Models::Senders::WhatsAppSyncContacts
Contacts sync status details.
11 |
# File 'lib/zavudev/models/senders/whats_app_sync_status.rb', line 11 required :contacts, -> { Zavudev::Senders::WhatsAppSyncContacts } |
#history ⇒ Zavudev::Models::Senders::WhatsAppSyncHistory
History sync status details.
17 |
# File 'lib/zavudev/models/senders/whats_app_sync_status.rb', line 17 required :history, -> { Zavudev::Senders::WhatsAppSyncHistory } |
#is_coexistence ⇒ Boolean
Whether the account is in coexistence mode.
23 |
# File 'lib/zavudev/models/senders/whats_app_sync_status.rb', line 23 required :is_coexistence, Zavudev::Internal::Type::Boolean, api_name: :isCoexistence |
#status ⇒ Symbol, Zavudev::Models::Senders::WhatsAppSyncStatus::Status
WhatsApp account status.
29 |
# File 'lib/zavudev/models/senders/whats_app_sync_status.rb', line 29 required :status, enum: -> { Zavudev::Senders::WhatsAppSyncStatus::Status } |