Customer Constructors

Definition

Overloads

Customer()

Initializes a new instance of the Customer class.

Customer(String, String, String, String, String, String, IList<AzurePlan>, IList<Reseller>)

Initializes a new instance of the Customer class.

Customer()

Initializes a new instance of the Customer class.

public Customer ();
Public Sub New ()

Applies to

Customer(String, String, String, String, String, String, IList<AzurePlan>, IList<Reseller>)

Initializes a new instance of the Customer class.

public Customer (string id = default, string name = default, string type = default, string billingProfileId = default, string billingProfileDisplayName = default, string displayName = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Billing.Models.AzurePlan> enabledAzurePlans = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Billing.Models.Reseller> resellers = default);
new Microsoft.Azure.Management.Billing.Models.Customer : string * string * string * string * string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.Billing.Models.AzurePlan> * System.Collections.Generic.IList<Microsoft.Azure.Management.Billing.Models.Reseller> -> Microsoft.Azure.Management.Billing.Models.Customer
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional billingProfileId As String = Nothing, Optional billingProfileDisplayName As String = Nothing, Optional displayName As String = Nothing, Optional enabledAzurePlans As IList(Of AzurePlan) = Nothing, Optional resellers As IList(Of Reseller) = Nothing)

Parameters

id
String

Resource Id.

name
String

Resource name.

type
String

Resource type.

billingProfileId
String

The ID of the billing profile for the invoice section.

billingProfileDisplayName
String

The name of the billing profile for the invoice section.

displayName
String

The name of the customer.

enabledAzurePlans
IList<AzurePlan>

Azure plans enabled for the customer.

resellers
IList<Reseller>

The list of resellers for which an Azure plan is enabled for the customer.

Applies to