use crate::models::payloads::{
application_commands::APIAutocompleteApplicationCommandInteractionData,
base::{APIBaseInteraction, APIDMInteractionWrapper, APIGuildInteractionWrapper},
responses::InteractionType,
};
pub type APIApplicationCommandAutocompleteInteraction =
APIBaseInteraction<InteractionType, APIAutocompleteApplicationCommandInteractionData>;
pub type APIApplicationCommandAutocompleteDMInteraction =
APIDMInteractionWrapper<APIApplicationCommandAutocompleteInteraction>;
pub type APIApplicationCommandAutocompleteGuildInteraction =
APIGuildInteractionWrapper<APIApplicationCommandAutocompleteInteraction>;