Class: Sentdm::Models::MeRetrieveResponse::Data::Channels::Rcs
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Sentdm::Models::MeRetrieveResponse::Data::Channels::Rcs
- Defined in:
- lib/sentdm/models/me_retrieve_response.rb,
sig/sentdm/models/me_retrieve_response.rbs
Overview
Instance Attribute Summary collapse
-
#configured ⇒ Boolean?
Whether RCS is configured for this account.
-
#phone_number ⇒ String?
RCS-enabled phone number in E.164 format.
Instance Method Summary collapse
-
#initialize ⇒ Rcs
constructor
A new instance of Rcs.
- #to_hash ⇒ { configured: bool, phone_number: String? }
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 ⇒ Rcs
Returns a new instance of Rcs.
177 |
# File 'sig/sentdm/models/me_retrieve_response.rbs', line 177
def initialize: (?configured: bool, ?phone_number: String?) -> void
|
Instance Attribute Details
#configured ⇒ Boolean?
Whether RCS is configured for this account
206 |
# File 'lib/sentdm/models/me_retrieve_response.rb', line 206 optional :configured, Sentdm::Internal::Type::Boolean |
#phone_number ⇒ String?
RCS-enabled phone number in E.164 format
212 |
# File 'lib/sentdm/models/me_retrieve_response.rb', line 212 optional :phone_number, String, nil?: true |
Instance Method Details
#to_hash ⇒ { configured: bool, phone_number: String? }
179 |
# File 'sig/sentdm/models/me_retrieve_response.rbs', line 179
def to_hash: -> { configured: bool, phone_number: String? }
|