Department Constructors

Definition

Overloads

Department()

Initializes a new instance of the Department class.

Department(String, String, String, String, String, String, IList<EnrollmentAccount>)

Initializes a new instance of the Department class.

Department()

Initializes a new instance of the Department class.

public Department ();
Public Sub New ()

Applies to

Department(String, String, String, String, String, String, IList<EnrollmentAccount>)

Initializes a new instance of the Department class.

public Department (string id = default, string name = default, string type = default, string departmentName = default, string costCenter = default, string status = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Billing.Models.EnrollmentAccount> enrollmentAccounts = default);
new Microsoft.Azure.Management.Billing.Models.Department : string * string * string * string * string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.Billing.Models.EnrollmentAccount> -> Microsoft.Azure.Management.Billing.Models.Department
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional departmentName As String = Nothing, Optional costCenter As String = Nothing, Optional status As String = Nothing, Optional enrollmentAccounts As IList(Of EnrollmentAccount) = Nothing)

Parameters

id
String

Resource Id.

name
String

Resource name.

type
String

Resource type.

departmentName
String

The name of the department.

costCenter
String

The cost center associated with the department.

status
String

The status of the department.

enrollmentAccounts
IList<EnrollmentAccount>

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

Applies to