principalEmail property

  1. @TagNumber.new(1)
String get principalEmail

The email address of the authenticated user (or service account on behalf of third party principal) making the request. For third party identity callers, the principal_subject field is populated instead of this field. For privacy reasons, the principal email address is sometimes redacted. For more information, see Caller identities in audit logs.

Implementation

@$pb.TagNumber(1)
$core.String get principalEmail => $_getSZ(0);
  1. @TagNumber.new(1)
set principalEmail (String v)

Implementation

@$pb.TagNumber(1)
set principalEmail($core.String v) {
  $_setString(0, v);
}