/* * 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 { PriceSheetGetOptionalParams, PriceSheetGetResponse, PriceSheetGetByBillingPeriodOptionalParams, PriceSheetGetByBillingPeriodResponse } from "../models"; /** Interface representing a PriceSheet. */ export interface PriceSheet { /** * Gets the price sheet for a subscription. Price sheet is available via this API only for May 1, 2014 * or later. * @param options The options parameters. */ get(options?: PriceSheetGetOptionalParams): Promise; /** * Get the price sheet for a scope by subscriptionId and billing period. Price sheet is available via * this API only for May 1, 2014 or later. * @param billingPeriodName Billing Period Name. * @param options The options parameters. */ getByBillingPeriod( billingPeriodName: string, options?: PriceSheetGetByBillingPeriodOptionalParams ): Promise; }