Layer 227
InputAiComposeTone
Abstract type representing one of 3 possible constructors.
Type
Available Constructors
In Gogram, this type is represented as tg.InputAiComposeTone interface.
Use any of the following constructors:
InputAiComposeToneDefault
References a built-in, default AI composer tone by its string identifier.
InputAiComposeToneId
References a custom AI composer tone by its ID and access hash.
InputAiComposeToneSlug
References a custom AI composer tone by its public slug, used when opening an AI compose tone link
Gogram Example
// InputAiComposeTone is an interface type // You can use any of the following constructors: var _ tg.InputAiComposeTone = &tg.InputAiComposeToneDefault{} var _ tg.InputAiComposeTone = &tg.InputAiComposeToneId{} var _ tg.InputAiComposeTone = &tg.InputAiComposeToneSlug{}