ContactDetailsArgs

data class ContactDetailsArgs(val contactName: Output<String>, val emailList: Output<List<String>>, val mobile: Output<String>? = null, val notificationPreference: Output<List<NotificationPreferenceArgs>>? = null, val phone: Output<String>, val phoneExtension: Output<String>? = null) : ConvertibleToJava<ContactDetailsArgs>

Contact Details.

Constructors

Link copied to clipboard
constructor(contactName: Output<String>, emailList: Output<List<String>>, mobile: Output<String>? = null, notificationPreference: Output<List<NotificationPreferenceArgs>>? = null, phone: Output<String>, phoneExtension: Output<String>? = null)

Properties

Link copied to clipboard
val contactName: Output<String>

Contact name of the person.

Link copied to clipboard
val emailList: Output<List<String>>

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

Link copied to clipboard
val mobile: Output<String>? = null

Mobile number of the contact person.

Link copied to clipboard

Notification preference for a job stage.

Link copied to clipboard
val phone: Output<String>

Phone number of the contact person.

Link copied to clipboard
val phoneExtension: Output<String>? = null

Phone extension number of the contact person.

Functions

Link copied to clipboard
open override fun toJava(): ContactDetailsArgs