다음을 통해 공유


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

옵션 매개 변수입니다.

반환