/* * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ import { CreditsGetOptionalParams, CreditsGetResponse } from "../models"; /** Interface representing a Credits. */ export interface Credits { /** * The credit summary by billingAccountId and billingProfileId. * @param billingAccountId BillingAccount ID * @param billingProfileId Azure Billing Profile ID. * @param options The options parameters. */ get( billingAccountId: string, billingProfileId: string, options?: CreditsGetOptionalParams ): Promise; }