Interface NetCreateResponse

Response from creating a net.

interface NetCreateResponse {
    action: "net.create";
    guildId: string;
    name: string;
    netId: number;
    netUid: string;
    ok: boolean;
}

Properties

action: "net.create"
guildId: string
name: string
netId: number
netUid: string
ok: boolean