type property
The type of the flag.
Flags are typed to being BOOLEAN, STRING, INTEGER or NONE. NONE is used for flags which do not take a value, such as skip_grant_tables. Possible string values are:
- "SQL_FLAG_TYPE_UNSPECIFIED" : This is an unknown flag type.
- "BOOLEAN" : Boolean type flag.
- "STRING" : String type flag.
- "INTEGER" : Integer type flag.
- "NONE" : Flag type used for a server startup option.
- "MYSQL_TIMEZONE_OFFSET" : Type introduced specially for MySQL TimeZone offset. Accept a string value with the format [-12:59, 13:00].
- "FLOAT" : Float type flag.
- "REPEATED_STRING" : Comma-separated list of the strings in a SqlFlagType enum.
Implementation
core.String? type;