Class: PlatformAPI::EnterpriseAccount

Inherits:
Object
  • Object
show all
Defined in:
lib/platform-api/client.rb

Overview

Enterprise accounts allow companies to manage their development teams and billing.

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ EnterpriseAccount

Returns a new instance of EnterpriseAccount.



1850
1851
1852
# File 'lib/platform-api/client.rb', line 1850

def initialize(client)
  @client = client
end

Instance Method Details

#info(enterprise_account_id) ⇒ Object

Information about an enterprise account.

Parameters:

  • enterprise_account_id:

    unique identifier of the enterprise account



1862
1863
1864
# File 'lib/platform-api/client.rb', line 1862

def info()
  @client..info()
end

#listObject

List enterprise accounts in which you are a member.



1855
1856
1857
# File 'lib/platform-api/client.rb', line 1855

def list()
  @client..list()
end

#update(enterprise_account_id, body = {}) ⇒ Object

Update enterprise account properties

Parameters:

  • enterprise_account_id:

    unique identifier of the enterprise account

  • body:

    the object to pass as the request payload



1870
1871
1872
# File 'lib/platform-api/client.rb', line 1870

def update(, body = {})
  @client..update(, body)
end