Skip to main content

EOS_Connect_IdToken

Type Alias EOS_Connect_IdToken 

Source
pub type EOS_Connect_IdToken = _tagEOS_Connect_IdToken;
Expand description

A structure that contains an ID token. These structures are created by EOS_Connect_CopyIdToken and must be passed to EOS_Connect_IdToken_Release.

Aliased Type§

#[repr(C)]
pub struct EOS_Connect_IdToken { pub ApiVersion: i32, pub ProductUserId: *mut EOS_ProductUserIdDetails, pub JsonWebToken: *const i8, }

Fields§

§ApiVersion: i32

API Version: Set this to EOS_CONNECT_IDTOKEN_API_LATEST.

§ProductUserId: *mut EOS_ProductUserIdDetails

The Product User ID described by the ID token. Use EOS_ProductUserId_FromString to populate this field when validating a received ID token.

§JsonWebToken: *const i8

The ID token as a Json Web Token (JWT) string.