27#include "CoreMinimal.h"
28#include "NegotiationResponse.generated.h"
Represents the response from a SignalR server during connection negotiation.
Definition NegotiationResponse.h:54
FString ConnectionToken
Authentication token for the connection.
Definition NegotiationResponse.h:67
int32 NegotiateVersion
The negotiation protocol version.
Definition NegotiationResponse.h:59
FString AccessToken
OAuth or other access token for authentication.
Definition NegotiationResponse.h:75
TArray< FNegotiationTransport > AvailableTransports
List of transports available for this connection.
Definition NegotiationResponse.h:83
FString Error
Error message if negotiation failed.
Definition NegotiationResponse.h:79
FString Url
The URL to connect to after negotiation.
Definition NegotiationResponse.h:71
FString ConnectionId
Unique identifier for the connection.
Definition NegotiationResponse.h:63
Represents a transport option returned during SignalR negotiation.
Definition NegotiationResponse.h:35
TArray< FString > TransferFormats
List of supported transfer formats (e.g., "Text", "Binary")
Definition NegotiationResponse.h:44
FString Transport
The type of transport (e.g., "WebSockets")
Definition NegotiationResponse.h:40