infobip-rtc
Version:
Infobip RTC JavaScript SDK - Infobip WebRTC API Implementation
12 lines (11 loc) • 357 B
TypeScript
export declare class AccessToken {
readonly jwt: string;
private readonly decodedToken;
constructor(token: string);
get identity(): string;
get displayName(): string | undefined;
get expiration(): number;
get location(): string | undefined;
get altLocation(): string | undefined;
get locations(): string[] | undefined;
}