Class: Telnyx::Resources::Rcs
- Inherits:
-
Object
- Object
- Telnyx::Resources::Rcs
- Defined in:
- lib/telnyx/resources/rcs.rb,
lib/telnyx/resources/rcs/agents.rb,
lib/telnyx/resources/rcs/brands.rb,
lib/telnyx/resources/rcs/agents/test_devices.rb,
sig/telnyx/resources/rcs.rbs,
sig/telnyx/resources/rcs/agents.rbs,
sig/telnyx/resources/rcs/brands.rbs,
sig/telnyx/resources/rcs/agents/test_devices.rbs
Defined Under Namespace
Instance Attribute Summary collapse
-
#agents ⇒ Telnyx::Resources::Rcs::Agents
readonly
Manage RCS agent registration, testing, verification, and launch.
-
#brands ⇒ Telnyx::Resources::Rcs::Brands
readonly
Manage the legal business entities that operate RCS agents.
Instance Method Summary collapse
-
#initialize(client:) ⇒ Rcs
constructor
private
A new instance of Rcs.
Constructor Details
#initialize(client:) ⇒ Rcs
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Rcs.
17 18 19 20 21 |
# File 'lib/telnyx/resources/rcs.rb', line 17 def initialize(client:) @client = client @agents = Telnyx::Resources::Rcs::Agents.new(client: client) @brands = Telnyx::Resources::Rcs::Brands.new(client: client) end |
Instance Attribute Details
#agents ⇒ Telnyx::Resources::Rcs::Agents (readonly)
Manage RCS agent registration, testing, verification, and launch.
8 9 10 |
# File 'lib/telnyx/resources/rcs.rb', line 8 def agents @agents end |
#brands ⇒ Telnyx::Resources::Rcs::Brands (readonly)
Manage the legal business entities that operate RCS agents.
12 13 14 |
# File 'lib/telnyx/resources/rcs.rb', line 12 def brands @brands end |