Share via


ContactDetails Constructors

Definition

Overloads

ContactDetails()

Initializes a new instance of the ContactDetails class.

ContactDetails(String, String, IList<String>, String, String, IList<NotificationPreference>)

Initializes a new instance of the ContactDetails class.

ContactDetails()

Initializes a new instance of the ContactDetails class.

public ContactDetails ();
Public Sub New ()

Applies to

ContactDetails(String, String, IList<String>, String, String, IList<NotificationPreference>)

Initializes a new instance of the ContactDetails class.

public ContactDetails (string contactName, string phone, System.Collections.Generic.IList<string> emailList, string phoneExtension = default, string mobile = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataBox.Models.NotificationPreference> notificationPreference = default);
new Microsoft.Azure.Management.DataBox.Models.ContactDetails : string * string * System.Collections.Generic.IList<string> * string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.DataBox.Models.NotificationPreference> -> Microsoft.Azure.Management.DataBox.Models.ContactDetails
Public Sub New (contactName As String, phone As String, emailList As IList(Of String), Optional phoneExtension As String = Nothing, Optional mobile As String = Nothing, Optional notificationPreference As IList(Of NotificationPreference) = Nothing)

Parameters

contactName
String

Contact name of the person.

phone
String

Phone number of the contact person.

emailList
IList<String>

List of Email-ids to be notified about job progress.

phoneExtension
String

Phone extension number of the contact person.

mobile
String

Mobile number of the contact person.

notificationPreference
IList<NotificationPreference>

Notification preference for a job stage.

Applies to