REST.Authenticator.OAuth.TOAuth2TokenType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TOAuth2TokenType = (ttNONE, ttBEARER);

C++

enum class DECLSPEC_DENUM TOAuth2TokenType : unsigned char { ttNONE, ttBEARER };

Properties

Type Visibility Source Unit Parent
enum public
REST.Authenticator.OAuth.pas
REST.Authenticator.OAuth.hpp
REST.Authenticator.OAuth REST.Authenticator.OAuth

Description

Defines the different token types.

TOAuth2TokenType can have the following values:

Value Meaning

ttNONE

The token is empty.

ttBEARER

Any party that owns a bearer token can use it to get access to the associated resources.

See Also