11 lines
508 B
TypeScript
11 lines
508 B
TypeScript
import { BillingAccountGetPolicyOptionalParams, BillingAccountGetPolicyResponse } from "../models";
|
|
/** Interface representing a BillingAccount. */
|
|
export interface BillingAccount {
|
|
/**
|
|
* Get Billing Account Policy.
|
|
* @param billingAccountId Billing Account Id.
|
|
* @param options The options parameters.
|
|
*/
|
|
getPolicy(billingAccountId: string, options?: BillingAccountGetPolicyOptionalParams): Promise<BillingAccountGetPolicyResponse>;
|
|
}
|
|
//# sourceMappingURL=billingAccount.d.ts.map
|