BillingPeriod Constructors

Definition

Overloads

BillingPeriod()

Initializes a new instance of the BillingPeriod class.

BillingPeriod(String, String, String, Nullable<DateTime>, Nullable<DateTime>, IList<String>)

Initializes a new instance of the BillingPeriod class.

BillingPeriod()

Initializes a new instance of the BillingPeriod class.

public BillingPeriod ();
Public Sub New ()

Applies to

BillingPeriod(String, String, String, Nullable<DateTime>, Nullable<DateTime>, IList<String>)

Initializes a new instance of the BillingPeriod class.

public BillingPeriod (string id = default, string name = default, string type = default, DateTime? billingPeriodStartDate = default, DateTime? billingPeriodEndDate = default, System.Collections.Generic.IList<string> invoiceIds = default);
new Microsoft.Azure.Management.Billing.Models.BillingPeriod : string * string * string * Nullable<DateTime> * Nullable<DateTime> * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.Billing.Models.BillingPeriod
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional billingPeriodStartDate As Nullable(Of DateTime) = Nothing, Optional billingPeriodEndDate As Nullable(Of DateTime) = Nothing, Optional invoiceIds As IList(Of String) = Nothing)

Parameters

id
String

Resource Id.

name
String

Resource name.

type
String

Resource type.

billingPeriodStartDate
Nullable<DateTime>

The start of the date range covered by the billing period.

billingPeriodEndDate
Nullable<DateTime>

The end of the date range covered by the billing period.

invoiceIds
IList<String>

Array of invoice ids that associated with.

Applies to