Class: Telnyx::Resources::Rcs

Inherits:
Object
  • Object
show all
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

Classes: Agents, Brands

Instance Attribute Summary collapse

Instance Method Summary collapse

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.

Parameters:



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

#agentsTelnyx::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

#brandsTelnyx::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