disableAuth property

  1. @TagNumber.new(8)
bool get disableAuth

When disable_auth is true, a JWT ID token won't be generated and the original "Authorization" HTTP header will be preserved. If the header is used to carry the original token and is expected by the backend, this field must be set to true to preserve the header.

Implementation

@$pb.TagNumber(8)
$core.bool get disableAuth => $_getBF(7);
  1. @TagNumber.new(8)
set disableAuth (bool value)

Implementation

@$pb.TagNumber(8)
set disableAuth($core.bool value) => $_setBool(7, value);