feat(RESTPostAPIStageInstanceJSONBody): add guild_scheduled_event_id (#656)

This commit is contained in:
Suneet Tipirneni
2023-09-28 15:01:27 -04:00
committed by GitHub
parent c71258ceb4
commit ecef5b492b
4 changed files with 16 additions and 0 deletions

View File

@@ -23,6 +23,10 @@ export interface RESTPostAPIStageInstanceJSONBody {
* Notify @everyone that a stage instance has started
*/
send_start_notification?: boolean | undefined;
/**
* The guild scheduled event associated with this stage instance
*/
guild_scheduled_event_id?: Snowflake | undefined;
}
/**

View File

@@ -23,6 +23,10 @@ export interface RESTPostAPIStageInstanceJSONBody {
* Notify @everyone that a stage instance has started
*/
send_start_notification?: boolean | undefined;
/**
* The guild scheduled event associated with this stage instance
*/
guild_scheduled_event_id?: Snowflake | undefined;
}
/**

View File

@@ -23,6 +23,10 @@ export interface RESTPostAPIStageInstanceJSONBody {
* Notify @everyone that a stage instance has started
*/
send_start_notification?: boolean | undefined;
/**
* The guild scheduled event associated with this stage instance
*/
guild_scheduled_event_id?: Snowflake | undefined;
}
/**

View File

@@ -23,6 +23,10 @@ export interface RESTPostAPIStageInstanceJSONBody {
* Notify @everyone that a stage instance has started
*/
send_start_notification?: boolean | undefined;
/**
* The guild scheduled event associated with this stage instance
*/
guild_scheduled_event_id?: Snowflake | undefined;
}
/**