@trimble-oss/trimble-id
Version:
Trimble Identity SDK for JavaScript/ TypeScript
32 lines (30 loc) • 567 B
TypeScript
/**
* Copyright (c) Trimble Inc.
* Licensed under the MIT License.
*/
/**
* @interface Claimset
* @description Interface for claimset data
*/
export interface Claimset {
iss: string
exp: Date
nbf: Date
iat: Date
jti: string
jwt_ver: number
sub: string
aud: string
identity_type: string
auth_time: Date
amr: []
azp: string
at_hash: string
federation_origin: string
given_name: string
family_name: string
email: string
email_verified: boolean
picture: string
data_region: string
}