Show / Hide Table of Contents

Class BillingInvoiceSectionResourceGetTransactionsOptions

The BillingInvoiceSectionResourceGetTransactionsOptions.

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

Constructors

BillingInvoiceSectionResourceGetTransactionsOptions(DateTimeOffset, DateTimeOffset, TransactionType)

Initializes a new instance of BillingInvoiceSectionResourceGetTransactionsOptions.

Declaration
public BillingInvoiceSectionResourceGetTransactionsOptions (DateTimeOffset periodStartDate, DateTimeOffset periodEndDate, Azure.ResourceManager.Billing.Models.TransactionType type);
Parameters
System.DateTimeOffset periodStartDate

The start date to fetch the transactions. The date should be specified in MM-DD-YYYY format.

System.DateTimeOffset periodEndDate

The end date to fetch the transactions. The date should be specified in MM-DD-YYYY format.

TransactionType type

The type of transaction.

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 to fetch the transactions. The date should be specified in MM-DD-YYYY format.

Declaration
public DateTimeOffset PeriodEndDate { get; }
Property Value
System.DateTimeOffset

PeriodStartDate

The start date to fetch the transactions. The date should be specified in MM-DD-YYYY format.

Declaration
public DateTimeOffset PeriodStartDate { get; }
Property Value
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>

Type

The type of transaction.

Declaration
public Azure.ResourceManager.Billing.Models.TransactionType Type { get; }
Property Value
TransactionType

Back to top Azure SDK for .NET