issuer property

  1. @TagNumber.new(2)
String get issuer

Identifies the principal that issued the JWT. See https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32#section-4.1.1 Usually a URL or an email address.

Example: https://securetoken.google.com Example: 1234567-compute@developer.gserviceaccount.com

Implementation

@$pb.TagNumber(2)
$core.String get issuer => $_getSZ(1);
  1. @TagNumber.new(2)
set issuer (String value)

Implementation

@$pb.TagNumber(2)
set issuer($core.String value) => $_setString(1, value);