次の方法で共有


PaymentMethods interface

PaymentMethods を表すインターフェイス。

メソッド

deleteByUser(string, PaymentMethodsDeleteByUserOptionalParams)

呼び出し元が所有する支払い方法を削除します。

getByBillingAccount(string, string, PaymentMethodsGetByBillingAccountOptionalParams)

課金アカウントで使用できる支払い方法を取得します。 この操作は、契約の種類が Microsoft 顧客契約の請求先アカウントでのみサポートされます。

getByBillingProfile(string, string, string, PaymentMethodsGetByBillingProfileOptionalParams)

課金プロファイルにリンクされている支払い方法を取得します。 この操作は、契約の種類が Microsoft 顧客契約の請求先アカウントでのみサポートされます。

getByUser(string, PaymentMethodsGetByUserOptionalParams)

呼び出し元が所有する支払い方法を取得します。

listByBillingAccount(string, PaymentMethodsListByBillingAccountOptionalParams)

課金アカウントで使用できる支払い方法を一覧表示します。 呼び出し元が所有する支払い方法と共に、これらの支払い方法を課金プロファイルに添付して支払いを行うことができます。 この操作は、契約の種類が Microsoft 顧客契約の請求先アカウントでのみサポートされます。

listByBillingProfile(string, string, PaymentMethodsListByBillingProfileOptionalParams)

課金プロファイルに関連付けられている支払い方法を一覧表示します。 この操作は、契約の種類が Microsoft 顧客契約の請求先アカウントでのみサポートされます。

listByUser(PaymentMethodsListByUserOptionalParams)

呼び出し元が所有する支払い方法を一覧表示します。

メソッドの詳細

deleteByUser(string, PaymentMethodsDeleteByUserOptionalParams)

呼び出し元が所有する支払い方法を削除します。

function deleteByUser(paymentMethodName: string, options?: PaymentMethodsDeleteByUserOptionalParams): Promise<void>

パラメーター

paymentMethodName

string

支払い方法を一意に識別する ID。

options
PaymentMethodsDeleteByUserOptionalParams

オプション パラメーター。

戻り値

Promise<void>

getByBillingAccount(string, string, PaymentMethodsGetByBillingAccountOptionalParams)

課金アカウントで使用できる支払い方法を取得します。 この操作は、契約の種類が Microsoft 顧客契約の請求先アカウントでのみサポートされます。

function getByBillingAccount(billingAccountName: string, paymentMethodName: string, options?: PaymentMethodsGetByBillingAccountOptionalParams): Promise<PaymentMethod>

パラメーター

billingAccountName

string

課金アカウントを一意に識別する ID。

paymentMethodName

string

支払い方法を一意に識別する ID。

options
PaymentMethodsGetByBillingAccountOptionalParams

オプション パラメーター。

戻り値

Promise<PaymentMethod>

getByBillingProfile(string, string, string, PaymentMethodsGetByBillingProfileOptionalParams)

課金プロファイルにリンクされている支払い方法を取得します。 この操作は、契約の種類が Microsoft 顧客契約の請求先アカウントでのみサポートされます。

function getByBillingProfile(billingAccountName: string, billingProfileName: string, paymentMethodName: string, options?: PaymentMethodsGetByBillingProfileOptionalParams): Promise<PaymentMethodLink>

パラメーター

billingAccountName

string

課金アカウントを一意に識別する ID。

billingProfileName

string

課金プロファイルを一意に識別する ID。

paymentMethodName

string

支払い方法を一意に識別する ID。

options
PaymentMethodsGetByBillingProfileOptionalParams

オプション パラメーター。

戻り値

getByUser(string, PaymentMethodsGetByUserOptionalParams)

呼び出し元が所有する支払い方法を取得します。

function getByUser(paymentMethodName: string, options?: PaymentMethodsGetByUserOptionalParams): Promise<PaymentMethod>

パラメーター

paymentMethodName

string

支払い方法を一意に識別する ID。

options
PaymentMethodsGetByUserOptionalParams

オプション パラメーター。

戻り値

Promise<PaymentMethod>

listByBillingAccount(string, PaymentMethodsListByBillingAccountOptionalParams)

課金アカウントで使用できる支払い方法を一覧表示します。 呼び出し元が所有する支払い方法と共に、これらの支払い方法を課金プロファイルに添付して支払いを行うことができます。 この操作は、契約の種類が Microsoft 顧客契約の請求先アカウントでのみサポートされます。

function listByBillingAccount(billingAccountName: string, options?: PaymentMethodsListByBillingAccountOptionalParams): PagedAsyncIterableIterator<PaymentMethod, PaymentMethod[], PageSettings>

パラメーター

billingAccountName

string

課金アカウントを一意に識別する ID。

options
PaymentMethodsListByBillingAccountOptionalParams

オプション パラメーター。

戻り値

listByBillingProfile(string, string, PaymentMethodsListByBillingProfileOptionalParams)

課金プロファイルに関連付けられている支払い方法を一覧表示します。 この操作は、契約の種類が Microsoft 顧客契約の請求先アカウントでのみサポートされます。

function listByBillingProfile(billingAccountName: string, billingProfileName: string, options?: PaymentMethodsListByBillingProfileOptionalParams): PagedAsyncIterableIterator<PaymentMethodLink, PaymentMethodLink[], PageSettings>

パラメーター

billingAccountName

string

課金アカウントを一意に識別する ID。

billingProfileName

string

課金プロファイルを一意に識別する ID。

options
PaymentMethodsListByBillingProfileOptionalParams

オプション パラメーター。

戻り値

listByUser(PaymentMethodsListByUserOptionalParams)

呼び出し元が所有する支払い方法を一覧表示します。

function listByUser(options?: PaymentMethodsListByUserOptionalParams): PagedAsyncIterableIterator<PaymentMethod, PaymentMethod[], PageSettings>

パラメーター

options
PaymentMethodsListByUserOptionalParams

オプション パラメーター。

戻り値