ActorResponse

data class ActorResponse(val displayName: String, val email: String, val googleSupport: Boolean)

An object containing information about the effective user and authenticated principal responsible for an action.

Constructors

Link copied to clipboard
fun ActorResponse(displayName: String, email: String, googleSupport: Boolean)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The name to display for the actor. If not provided, it is inferred from credentials supplied during case creation. When an email is provided, a display name must also be provided. This will be obfuscated if the user is a Google Support agent.

Link copied to clipboard

The email address of the actor. If not provided, it is inferred from credentials supplied during case creation. If the authenticated principal does not have an email address, one must be provided. When a name is provided, an email must also be provided. This will be obfuscated if the user is a Google Support agent.

Link copied to clipboard

Whether the actor is a Google support actor.