class TextInputBuilder
extends
ComponentBuilder<APITextInputComponent>export declare class TextInputBuilder extends ComponentBuilder<APITextInputComponent>
A builder that creates API-compatible JSON data for text inputs.
Constructors
data?: Partial<APITextInputComponent>)
constructor(data?: Partial<APITextInputComponent>
Creates a new text input from API data.
setCustomIdcustomId: string) : this (
customId: string
Sets the custom id for this text input.
setLabellabel: string) : this (
label: string
Sets the label for this text input.
setMaxLengthmaxLength: number) : this (
maxLength: number
Sets the maximum length of text for this text input.
setMinLengthminLength: number) : this (
minLength: number
Sets the minimum length of text for this text input.
setPlaceholderplaceholder: string) : this (
placeholder: string
Sets the placeholder for this text input.
setRequiredrequired?: boolean) : this (
required?: boolean
Sets whether this text input is required.
setStylestyle: TextInputStyle) : this (
style: TextInputStyle
Sets the style for this text input.
setValuevalue: string) : this (
value: string
Sets the value for this text input.
toJSONvalidationOverride?: boolean) : APITextInputComponent (
validationOverride?: boolean
Serializes this builder to API-compatible JSON data.Note that by disabling validation, there is no guarantee that the resulting object will be valid.