UserInfoArgs

data class UserInfoArgs(val emailAddress: Output<String>? = null, val firstName: Output<String>? = null, val lastName: Output<String>? = null, val phoneNumber: Output<String>? = null) : ConvertibleToJava<UserInfoArgs>

Constructors

Link copied to clipboard
constructor(emailAddress: Output<String>? = null, firstName: Output<String>? = null, lastName: Output<String>? = null, phoneNumber: Output<String>? = null)

Properties

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

Email of the user used by Logz for contacting them if needed

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

First Name of the user

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

Last Name of the user

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

Phone number of the user used by Logz for contacting them if needed

Functions

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