AccountsRestClient class
VSS REST API への要求を行うために (から派生) 使用する必要がある基底クラス
- Extends
コンストラクター
Accounts |
プロパティ
RESOURCE_AREA_ID |
メソッド
create |
|
get |
|
get |
特定の所有者または特定のメンバーのアカウントの一覧を取得します。 ownerId、memberId のいずれかのパラメーターが必要です。 |
コンストラクターの詳細
AccountsRestClient(IVssRestClientOptions)
プロパティの詳細
RESOURCE_AREA_ID
static RESOURCE_AREA_ID: string
プロパティ値
string
メソッドの詳細
createAccount(AccountCreateInfoInternal, boolean)
function createAccount(info: AccountCreateInfoInternal, usePrecreated?: boolean): Promise<Account>
パラメーター
- usePrecreated
-
boolean
戻り値
Promise<Account>
getAccount(string)
function getAccount(accountId: string): Promise<Account>
パラメーター
- accountId
-
string
戻り値
Promise<Account>
getAccounts(string, string, string)
特定の所有者または特定のメンバーのアカウントの一覧を取得します。 ownerId、memberId のいずれかのパラメーターが必要です。
function getAccounts(ownerId?: string, memberId?: string, properties?: string): Promise<Account[]>
パラメーター
- ownerId
-
string
アカウントの所有者の ID。
- memberId
-
string
アカウントのメンバーの ID。
- properties
-
string
戻り値
Promise<Account[]>