Interface IRealtimeSocketResponse | realtime-csharp (original) (raw)

Namespace

Supabase.Realtime.Interfaces

Assembly

Supabase.Realtime.dll

Contract for a socket response

public interface IRealtimeSocketResponse

Properties

Event

The parsed event type

Constants.EventType Event { get; }

Property Value

Constants.EventType

Payload

SocketResponsePayload? Payload { get; set; }

Property Value

SocketResponsePayload

Ref

The unique id of this response

string? Ref { get; set; }

Property Value

string

Topic

The topic.

string? Topic { get; set; }

Property Value

string

_event

The raw event name

string? _event { get; set; }

Property Value

string