Variable RichValue

RichValue: {
    create(
        base?: {
            bigdecimalValue?: {
                exp?: number;
                value?: { data?: Uint8Array; negative?: boolean };
            };
            bigintValue?: { data?: Uint8Array; negative?: boolean };
            boolValue?: boolean;
            bytesValue?: Uint8Array;
            floatValue?: number;
            intValue?: number;
            listValue?: {
                values?: (
                    { nullValue?: RichValue_NullValue | undefined; intValue?: number | undefined; floatValue?: number | undefined; bytesValue?: Uint8Array | undefined; ... 7 more ...; tokenValue?: { ...; } | undefined; }
                )[];
            };
            nullValue?: RichValue_NullValue;
            stringValue?: string;
            structValue?: {
                fields?: {
                    [key: string]: { nullValue?: RichValue_NullValue | undefined; intValue?: number | undefined; floatValue?: number | undefined; bytesValue?: Uint8Array | undefined; ... 7 more ...; tokenValue?: { ...; } | undefined; } | undefined;
                };
            };
            timestampValue?: Date;
            tokenValue?: {
                amount?: {
                    exp?: number;
                    value?: { data?: Uint8Array; negative?: boolean };
                };
                specifiedAt?: Date;
                token?: {
                    address?: { address?: string; chain?: string };
                    symbol?: string;
                };
            };
        },
    ): RichValue;
    decode(input: Uint8Array | Reader, length?: number): RichValue;
    encode(message: RichValue, writer?: Writer): Writer;
    fromJSON(object: any): RichValue;
    fromPartial(
        object: {
            bigdecimalValue?: {
                exp?: number;
                value?: { data?: Uint8Array; negative?: boolean };
            };
            bigintValue?: { data?: Uint8Array; negative?: boolean };
            boolValue?: boolean;
            bytesValue?: Uint8Array;
            floatValue?: number;
            intValue?: number;
            listValue?: {
                values?: (
                    { nullValue?: RichValue_NullValue | undefined; intValue?: number | undefined; floatValue?: number | undefined; bytesValue?: Uint8Array | undefined; ... 7 more ...; tokenValue?: { ...; } | undefined; }
                )[];
            };
            nullValue?: RichValue_NullValue;
            stringValue?: string;
            structValue?: {
                fields?: {
                    [key: string]: | undefined
                    | (
                        { nullValue?: RichValue_NullValue | undefined; intValue?: number | undefined; floatValue?: number | undefined; bytesValue?: Uint8Array | undefined; ... 7 more ...; tokenValue?: { ...; } | undefined; }
                    );
                };
            };
            timestampValue?: Date;
            tokenValue?: {
                amount?: {
                    exp?: number;
                    value?: { data?: Uint8Array; negative?: boolean };
                };
                specifiedAt?: Date;
                token?: {
                    address?: { address?: string; chain?: string };
                    symbol?: string;
                };
            };
        },
    ): RichValue;
    toJSON(message: RichValue): unknown;
}