Interface JSONGuildTemplate

interface JSONGuildTemplate {
    code: string;
    createdAt: number;
    creator: JSONUser;
    description: null | string;
    isDirty: null | boolean;
    name: string;
    serializedSourceGuild: Partial<RawGuild>;
    sourceGuildID: string;
    updatedAt: number;
    usageCount: number;
}

Properties

code: string
createdAt: number
creator: JSONUser
description: null | string
isDirty: null | boolean
name: string
serializedSourceGuild: Partial<RawGuild>
sourceGuildID: string
updatedAt: number
usageCount: number