interface BotExtensionCreationRequest { /** * Bot name (equals to extension first name) */ name?: string; /** * Key of a bot application */ applicationKey?: string; /** * User extension identifier */ creatorId?: string; } export default BotExtensionCreationRequest;