Show / Hide Table of Contents

Class BillingCustomerCollectionGetAllOptions

The BillingCustomerCollectionGetAllOptions.

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

Constructors

BillingCustomerCollectionGetAllOptions()

Initializes a new instance of BillingCustomerCollectionGetAllOptions.

Declaration
public BillingCustomerCollectionGetAllOptions ();

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>

Expand

May be used to expand enabledAzurePlans and resellers.

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

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

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