BillingProfileCreationRequest Constructors

Definition

Overloads

BillingProfileCreationRequest()

Initializes a new instance of the BillingProfileCreationRequest class.

BillingProfileCreationRequest(String, String, AddressDetails, Nullable<Boolean>, IList<AzurePlan>)

Initializes a new instance of the BillingProfileCreationRequest class.

BillingProfileCreationRequest()

Initializes a new instance of the BillingProfileCreationRequest class.

public BillingProfileCreationRequest ();
Public Sub New ()

Applies to

BillingProfileCreationRequest(String, String, AddressDetails, Nullable<Boolean>, IList<AzurePlan>)

Initializes a new instance of the BillingProfileCreationRequest class.

public BillingProfileCreationRequest (string displayName = default, string poNumber = default, Microsoft.Azure.Management.Billing.Models.AddressDetails billTo = default, bool? invoiceEmailOptIn = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Billing.Models.AzurePlan> enabledAzurePlans = default);
new Microsoft.Azure.Management.Billing.Models.BillingProfileCreationRequest : string * string * Microsoft.Azure.Management.Billing.Models.AddressDetails * Nullable<bool> * System.Collections.Generic.IList<Microsoft.Azure.Management.Billing.Models.AzurePlan> -> Microsoft.Azure.Management.Billing.Models.BillingProfileCreationRequest
Public Sub New (Optional displayName As String = Nothing, Optional poNumber As String = Nothing, Optional billTo As AddressDetails = Nothing, Optional invoiceEmailOptIn As Nullable(Of Boolean) = Nothing, Optional enabledAzurePlans As IList(Of AzurePlan) = Nothing)

Parameters

displayName
String

The name of the billing profile.

poNumber
String

The purchase order name that will appear on the invoices generated for the billing profile.

billTo
AddressDetails

The address of the individual or organization that is responsible for the billing profile.

invoiceEmailOptIn
Nullable<Boolean>

Flag controlling whether the invoices for the billing profile are sent through email.

enabledAzurePlans
IList<AzurePlan>

Enabled azure plans for the billing profile.

Applies to