File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
packages/structures/src/guild Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import type { Partialize } from '../utils/types.js';
88 * Represents a guild template on Discord.
99 *
1010 * @typeParam Omitted - Specify the properties that will not be stored in the raw data field as a union, implement via `DataTemplate`
11- * @remarks has substructures User and Guild, which need to be instantiated and stored by any extending classes using it.
11+ * @remarks has substructures ` User` and ` Guild` , which need to be instantiated and stored by any extending classes using it.
1212 */
1313export class GuildTemplate < Omitted extends keyof APITemplate | '' = 'created_at' | 'updated_at' > extends Structure <
1414 APITemplate ,
Original file line number Diff line number Diff line change @@ -12,6 +12,11 @@ export class IntegrationAccount<Omitted extends keyof APIIntegrationAccount | ''
1212 APIIntegrationAccount ,
1313 Omitted
1414> {
15+ /**
16+ * The template used for removing data from the raw data stored for each integration account.
17+ */
18+ public static override readonly DataTemplate : Partial < APIIntegrationAccount > = { } ;
19+
1520 /**
1621 * @param data - The raw data from the API for the integration account.
1722 */
You can’t perform that action at this time.
0 commit comments