EnrollmentAccount Constructors

Definition

Overloads

EnrollmentAccount()

Initializes a new instance of the EnrollmentAccount class.

EnrollmentAccount(String, String, String, String, String, String, String, Nullable<DateTime>, Nullable<DateTime>, Department)

Initializes a new instance of the EnrollmentAccount class.

EnrollmentAccount()

Initializes a new instance of the EnrollmentAccount class.

public EnrollmentAccount ();
Public Sub New ()

Applies to

EnrollmentAccount(String, String, String, String, String, String, String, Nullable<DateTime>, Nullable<DateTime>, Department)

Initializes a new instance of the EnrollmentAccount class.

public EnrollmentAccount (string id = default, string name = default, string type = default, string accountName = default, string costCenter = default, string accountOwner = default, string status = default, DateTime? startDate = default, DateTime? endDate = default, Microsoft.Azure.Management.Billing.Models.Department department = default);
new Microsoft.Azure.Management.Billing.Models.EnrollmentAccount : string * string * string * string * string * string * string * Nullable<DateTime> * Nullable<DateTime> * Microsoft.Azure.Management.Billing.Models.Department -> Microsoft.Azure.Management.Billing.Models.EnrollmentAccount
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional accountName As String = Nothing, Optional costCenter As String = Nothing, Optional accountOwner As String = Nothing, Optional status As String = Nothing, Optional startDate As Nullable(Of DateTime) = Nothing, Optional endDate As Nullable(Of DateTime) = Nothing, Optional department As Department = Nothing)

Parameters

id
String

Resource Id.

name
String

Resource name.

type
String

Resource type.

accountName
String

The name of the enrollment account.

costCenter
String

The cost center associated with the enrollment account.

accountOwner
String

The owner of the enrollment account.

status
String

The status of the enrollment account.

startDate
Nullable<DateTime>

The start date of the enrollment account.

endDate
Nullable<DateTime>

The end date of the enrollment account.

department
Department

Associated department. By default this is not populated, unless it's specified in $expand.

Applies to