UserInfoResponse

data class UserInfoResponse(val emailAddress: String? = null, val name: String? = null, val phoneNumber: String? = null)

Includes name, email and optionally, phone number. User Information can't be null.

Constructors

Link copied to clipboard
constructor(emailAddress: String? = null, name: String? = null, phoneNumber: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val emailAddress: String? = null

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

Link copied to clipboard
val name: String? = null

Name of the user

Link copied to clipboard
val phoneNumber: String? = null

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