Newer
Older
percord / src / schemas / api / users / InstanceUserDeleteSchema.ts
export type InstanceUserDeleteSchema = InstanceUserDeleteSchemaContent | undefined; //unsure if this a correct way to make the body optional
export interface InstanceUserDeleteSchemaContent {
    reason?: string;
    persistInstanceBan?: boolean;
}