Variable EventTrackingResult

EventTrackingResult: {
    create(
        base?: {
            attributes?: { [key: string]: any };
            attributes2?: {
                fields?: {
                    [key: string]:
                        | undefined
                        | {
                            bigdecimalValue?: { exp?: ...; value?: ... };
                            bigintValue?: { data?: ...; negative?: ... };
                            boolValue?: boolean;
                            bytesValue?: Uint8Array;
                            floatValue?: number;
                            intValue?: number;
                            listValue?: { values?: ... };
                            nullValue?: RichValue_NullValue;
                            stringValue?: string;
                            structValue?: { fields?: { [x: string]: { nullValue?: RichValue_NullValue | undefined; intValue?: number | undefined; floatValue?: number | undefined; bytesValue?: Uint8Array | undefined; ... 7 more ...; tokenValue?: { ...; } | undefined; } | undefined; } | undefined; } | undefined;
                            timestampValue?: Date;
                            tokenValue?: { amount?: ...; specifiedAt?: ...; token?: ... };
                        };
                };
            };
            distinctEntityId?: string;
            message?: string;
            metadata?: {
                address?: string;
                blockNumber?: bigint;
                chainId?: string;
                contractName?: string;
                labels?: { [key: string]: undefined
                | string };
                logIndex?: number;
                name?: string;
                transactionHash?: string;
                transactionIndex?: number;
            };
            noMetric?: boolean;
            runtimeInfo?: { from?: HandlerType };
            severity?: LogLevel;
        },
    ): EventTrackingResult;
    decode(input: Uint8Array | Reader, length?: number): EventTrackingResult;
    encode(message: EventTrackingResult, writer?: Writer): Writer;
    fromJSON(object: any): EventTrackingResult;
    fromPartial(
        object: {
            attributes?: { [key: string]: any };
            attributes2?: {
                fields?: {
                    [key: string]:
                        | undefined
                        | {
                            bigdecimalValue?: { exp?: (...)
                            | (...); value?: (...) | (...) };
                            bigintValue?: {
                                data?: (...) | (...);
                                negative?: (...) | (...) | (...);
                            };
                            boolValue?: boolean;
                            bytesValue?: Uint8Array;
                            floatValue?: number;
                            intValue?: number;
                            listValue?: { values?: (...)
                            | (...) };
                            nullValue?: RichValue_NullValue;
                            stringValue?: string;
                            structValue?: { fields?: { [x: string]: { nullValue?: RichValue_NullValue | undefined; intValue?: number | undefined; floatValue?: number | undefined; bytesValue?: Uint8Array | undefined; ... 7 more ...; tokenValue?: { ...; } | undefined; } | undefined; } | undefined; } | undefined;
                            timestampValue?: Date;
                            tokenValue?: {
                                amount?: (...) | (...);
                                specifiedAt?: (...) | (...);
                                token?: (...) | (...);
                            };
                        };
                };
            };
            distinctEntityId?: string;
            message?: string;
            metadata?: {
                address?: string;
                blockNumber?: bigint;
                chainId?: string;
                contractName?: string;
                labels?: { [key: string]: undefined
                | string };
                logIndex?: number;
                name?: string;
                transactionHash?: string;
                transactionIndex?: number;
            };
            noMetric?: boolean;
            runtimeInfo?: { from?: HandlerType };
            severity?: LogLevel;
        },
    ): EventTrackingResult;
    toJSON(message: EventTrackingResult): unknown;
}