Newer
Older
percord / src / models / Role.ts
@Flam3rboy Flam3rboy on 10 Feb 2021 203 bytes fix models + move schemas in api and gateway
export interface Role {
	id: bigint;
	color: number;
	hoist: boolean;
	managed: boolean;
	mentionable: boolean;
	name: string;
	permissions: bigint;
	position: number;
	tags?: {
		bot_id?: bigint;
	};
}