Standard Sql Data Type Response
data class StandardSqlDataTypeResponse(val arrayElementType: StandardSqlDataTypeResponse, val structType: StandardSqlStructTypeResponse, val typeKind: String)
The data type of a variable such as a function argument. Examples include: * INT64: {"typeKind": "INT64"}
* ARRAY: { "typeKind": "ARRAY", "arrayElementType": {"typeKind": "STRING"} } * STRUCT>: { "typeKind": "STRUCT", "structType": { "fields": { "name": "x", "type": {"typeKind": "STRING"} }, { "name": "y", "type": { "typeKind": "ARRAY", "arrayElementType": {"typeKind": "DATE"} } } } }
Constructors
Link copied to clipboard
constructor(arrayElementType: StandardSqlDataTypeResponse, structType: StandardSqlStructTypeResponse, typeKind: String)