Class: Telnyx::Resources::Organizations
- Inherits:
-
Object
- Object
- Telnyx::Resources::Organizations
- Defined in:
- lib/telnyx/resources/organizations.rb,
lib/telnyx/resources/organizations/users.rb,
lib/telnyx/resources/organizations/users/actions.rb
Defined Under Namespace
Classes: Users
Instance Attribute Summary collapse
-
#users ⇒ Telnyx::Resources::Organizations::Users
readonly
Operations related to users in your organization.
Instance Method Summary collapse
-
#initialize(client:) ⇒ Organizations
constructor
private
A new instance of Organizations.
Constructor Details
#initialize(client:) ⇒ Organizations
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 Organizations.
13 14 15 16 |
# File 'lib/telnyx/resources/organizations.rb', line 13 def initialize(client:) @client = client @users = Telnyx::Resources::Organizations::Users.new(client: client) end |
Instance Attribute Details
#users ⇒ Telnyx::Resources::Organizations::Users (readonly)
Operations related to users in your organization
8 9 10 |
# File 'lib/telnyx/resources/organizations.rb', line 8 def users @users end |