Show / Hide Table of Contents

Class BillingProfileResourceGetInvoicesOptions

The BillingProfileResourceGetInvoicesOptions.

Inheritance
System.Object
BillingProfileResourceGetInvoicesOptions
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.ResourceManager.Billing.dll
Syntax
public class BillingProfileResourceGetInvoicesOptions

Constructors

BillingProfileResourceGetInvoicesOptions()

Initializes a new instance of BillingProfileResourceGetInvoicesOptions.

Declaration
public BillingProfileResourceGetInvoicesOptions ();

Properties

Count

The count query option allows clients to request a count of the matching resources included with the resources in the response.

Declaration
public Nullable<bool> Count { get; set; }
Property Value
System.Nullable<System.Boolean>

Filter

The filter query option allows clients to filter a collection of resources that are addressed by a request URL.

Declaration
public string Filter { get; set; }
Property Value
System.String

OrderBy

The orderby query option allows clients to request resources in a particular order.

Declaration
public string OrderBy { get; set; }
Property Value
System.String

PeriodEndDate

The end date of the billing period for which the invoice is generated. The date is in MM-DD-YYYY format.

Declaration
public Nullable<DateTimeOffset> PeriodEndDate { get; set; }
Property Value
System.Nullable<System.DateTimeOffset>

PeriodStartDate

The start date of the billing period for which the invoice is generated. The date is in MM-DD-YYYY format.

Declaration
public Nullable<DateTimeOffset> PeriodStartDate { get; set; }
Property Value
System.Nullable<System.DateTimeOffset>

Search

The search query option allows clients to request items within a collection matching a free-text search expression. search is only supported for string fields.

Declaration
public string Search { get; set; }
Property Value
System.String

Skip

The skip query option requests the number of items in the queried collection that are to be skipped and not included in the result.

Declaration
public Nullable<long> Skip { get; set; }
Property Value
System.Nullable<System.Int64>

Top

The top query option requests the number of items in the queried collection to be included in the result. The maximum supported value for top is 50.

Declaration
public Nullable<long> Top { get; set; }
Property Value
System.Nullable<System.Int64>

Back to top Azure SDK for .NET