1package billingapi
2
3// Copyright (c) Microsoft Corporation. All rights reserved.
4// Licensed under the MIT License. See License.txt in the project root for license information.
5//
6// Code generated by Microsoft (R) AutoRest Code Generator.
7// Changes may cause incorrect behavior and will be lost if the code is regenerated.
8
9import (
10	"context"
11	"github.com/Azure/azure-sdk-for-go/services/preview/billing/mgmt/2017-02-27-preview/billing"
12)
13
14// InvoicesClientAPI contains the set of methods on the InvoicesClient type.
15type InvoicesClientAPI interface {
16	Get(ctx context.Context, invoiceName string) (result billing.Invoice, err error)
17	GetLatest(ctx context.Context) (result billing.Invoice, err error)
18	List(ctx context.Context, expand string, filter string, skiptoken string, top *int32) (result billing.InvoicesListResultPage, err error)
19	ListComplete(ctx context.Context, expand string, filter string, skiptoken string, top *int32) (result billing.InvoicesListResultIterator, err error)
20}
21
22var _ InvoicesClientAPI = (*billing.InvoicesClient)(nil)
23
24// OperationsClientAPI contains the set of methods on the OperationsClient type.
25type OperationsClientAPI interface {
26	List(ctx context.Context) (result billing.OperationListResultPage, err error)
27	ListComplete(ctx context.Context) (result billing.OperationListResultIterator, err error)
28}
29
30var _ OperationsClientAPI = (*billing.OperationsClient)(nil)
31