Stream Chat Unreal SDK
Loading...
Searching...
No Matches
Token.h
1
// Copyright 2022 Stream.IO, Inc. All Rights Reserved.
2
3
#pragma once
4
5
#include "CoreMinimal.h"
6
7
#include "Token.generated.h"
8
13
UENUM(BlueprintType)
14
enum class
ETokenType
: uint8
15
{
17
Jwt
,
19
Anonymous
,
20
};
21
22
USTRUCT(BlueprintType)
23
struct
TOKENPROVIDER_API FToken
24
{
25
GENERATED_BODY()
26
27
public:
28
static FToken
Jwt
(const FString& InJwtString);
29
static FToken
Anonymous
();
30
31
ETokenType
TokenType =
ETokenType
::
Anonymous
;
32
FString JwtString;
33
};
ETokenType
ETokenType
The type of token.
Definition:
Token.h:15
ETokenType::Anonymous
@ Anonymous
Very restricted user type.
ETokenType::Jwt
@ Jwt
JSON Web Token.
Jwt
Utilities for JSON Web Token manipulation.
Definition:
Jwt.h:11
Source
Backend
TokenProvider
Public
Token.h
Generated by
1.9.5