Class: Telnyx::Resources::Organizations

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

Instance Method Summary collapse

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.

Parameters:



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

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