class ApplicationCommandOptions
init(name: String, description: String, type: ApplicationCommandType)
var autoComplete: Bool?
var channelTypes: Int?
var choices: [ApplicationChoices]
var description: String
var name: String
var required: Bool
var type: ApplicationCommandType
func addChoice(name: String, value: String) -> Self
func addChoices(choices: ApplicationChoices...) -> Self
func setRequired(required: Bool) -> Self