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.
1801 1802 1803 |
# File 'lib/platform-api/client.rb', line 1801 def initialize(client) @client = client end |
Instance Method Details
#create(enterprise_account_id, body = {}) ⇒ Object
Create a member in an enterprise account.
1816 1817 1818 |
# File 'lib/platform-api/client.rb', line 1816 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.
1833 1834 1835 |
# File 'lib/platform-api/client.rb', line 1833 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.
1808 1809 1810 |
# File 'lib/platform-api/client.rb', line 1808 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.
1825 1826 1827 |
# File 'lib/platform-api/client.rb', line 1825 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 |