/// <summary> /// Gets an invoice by ID. The operation is supported for billing accounts with /// agreement type Microsoft Partner Agreement or Microsoft Customer Agreement. /// <see href="https://docs.microsoft.com/en-us/rest/api/billing/" /> /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='invoiceName'> /// The ID that uniquely identifies an invoice. /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task <Invoice> GetByIdAsync(this IInvoicesOperations operations, string invoiceName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetByIdWithHttpMessagesAsync(invoiceName, null, cancellationToken).ConfigureAwait(false)) { return(_result.Body); } }