Class: PlatformAPI::EnterpriseAccountMember
- Inherits:
-
Object
- Object
- PlatformAPI::EnterpriseAccountMember
- Defined in:
- lib/platform-api/client.rb
Overview
Enterprise account members are users with access to an enterprise account.
Instance Method Summary collapse
-
#create(enterprise_account_id, body = {}) ⇒ Object
Create a member in an enterprise account.
-
#delete(enterprise_account_id, account_email_or_account_id) ⇒ Object
delete a member in an enterprise account.
-
#initialize(client) ⇒ EnterpriseAccountMember
constructor
A new instance of EnterpriseAccountMember.
-
#list(enterprise_account_id) ⇒ Object
List members in an enterprise account.
-
#update(enterprise_account_id, account_email_or_account_id, body = {}) ⇒ Object
Update a member in an enterprise account.
Constructor Details
#initialize(client) ⇒ EnterpriseAccountMember
Returns a new instance of EnterpriseAccountMember.
1807 1808 1809 |
# File 'lib/platform-api/client.rb', line 1807 def initialize(client) @client = client end |
Instance Method Details
#create(enterprise_account_id, body = {}) ⇒ Object
Create a member in an enterprise account.
1822 1823 1824 |
# File 'lib/platform-api/client.rb', line 1822 def create(enterprise_account_id, body = {}) @client.enterprise_account_member.create(enterprise_account_id, body) end |
#delete(enterprise_account_id, account_email_or_account_id) ⇒ Object
delete a member in an enterprise account.
1839 1840 1841 |
# File 'lib/platform-api/client.rb', line 1839 def delete(enterprise_account_id, account_email_or_account_id) @client.enterprise_account_member.delete(enterprise_account_id, account_email_or_account_id) end |
#list(enterprise_account_id) ⇒ Object
List members in an enterprise account.
1814 1815 1816 |
# File 'lib/platform-api/client.rb', line 1814 def list(enterprise_account_id) @client.enterprise_account_member.list(enterprise_account_id) end |
#update(enterprise_account_id, account_email_or_account_id, body = {}) ⇒ Object
Update a member in an enterprise account.
1831 1832 1833 |
# File 'lib/platform-api/client.rb', line 1831 def update(enterprise_account_id, account_email_or_account_id, body = {}) @client.enterprise_account_member.update(enterprise_account_id, account_email_or_account_id, body) end |