import { ChargesListOptionalParams, ChargesListResponse } from "../models"; /** Interface representing a Charges. */ export interface Charges { /** * 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