Stream Chat Unreal SDK
Loading...
Searching...
No Matches
ITokenProvider.h
1// Copyright 2022 Stream.IO, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "Token.h"
7
8class TOKENPROVIDER_API ITokenProvider
9{
10public:
11 virtual ~ITokenProvider() = default;
12 virtual FToken LoadToken(const FString& UserId, bool bRefresh = false) const = 0;
13};
@ UserId
The user ID of the user that sent the message.