Interface RichValue

interface RichValue {
    bigdecimalValue?: BigDecimal;
    bigintValue?: BigInteger;
    boolValue?: boolean;
    bytesValue?: Uint8Array;
    floatValue?: number;
    intValue?: number;
    listValue?: RichValueList;
    nullValue?: RichValue_NullValue;
    stringValue?: string;
    structValue?: RichStruct;
    timestampValue?: Date;
}

Properties

bigdecimalValue?: BigDecimal
bigintValue?: BigInteger
boolValue?: boolean
bytesValue?: Uint8Array
floatValue?: number
intValue?: number
listValue?: RichValueList
stringValue?: string
structValue?: RichStruct
timestampValue?: Date