Interface CreateLobbyMessageOptions

interface CreateLobbyMessageOptions {
    content: string;
    flags?: number;
    metadata?: null | Record<string, string>;
}

Properties

content: string

The message content. Must be non-empty.

flags?: number

The message flags. Only flags creatable by the Social SDK are accepted.

metadata?: null | Record<string, string>

Custom metadata for the message.