import { Charges } from "../operationsInterfaces"; import { ConsumptionManagementClient } from "../consumptionManagementClient"; import { ChargesListOptionalParams, ChargesListResponse } from "../models"; /** Class containing Charges operations. */ export declare class ChargesImpl implements Charges { private readonly client; /** * Initialize a new instance of the class Charges class. * @param client Reference to the service client */ constructor(client: ConsumptionManagementClient); /** * Lists the charges based for the defined scope. * @param scope The scope associated with charges operations. This includes * '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/departments/{departmentId}' for * Department scope, and * '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/enrollmentAccounts/{enrollmentAccountId}' * for EnrollmentAccount scope. For department and enrollment accounts, you can also add billing period * to the scope using '/providers/Microsoft.Billing/billingPeriods/{billingPeriodName}'. For e.g. to * specify billing period at department scope use * '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/departments/{departmentId}/providers/Microsoft.Billing/billingPeriods/{billingPeriodName}'. * Also, Modern Commerce Account scopes are * '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}' for billingAccount scope, * '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/billingProfiles/{billingProfileId}' * for billingProfile scope, * 'providers/Microsoft.Billing/billingAccounts/{billingAccountId}/billingProfiles/{billingProfileId}/invoiceSections/{invoiceSectionId}' * for invoiceSection scope, and * 'providers/Microsoft.Billing/billingAccounts/{billingAccountId}/customers/{customerId}' specific for * partners. * @param options The options parameters. */ list(scope: string, options?: ChargesListOptionalParams): Promise; } //# sourceMappingURL=charges.d.ts.map