Variable DBRequest_DBUpsert

DBRequest_DBUpsert: {
    create(
        base?: {
            data?: { [key: string]: any }[];
            entity?: string[];
            entityData?: {
                fields?: {
                    [key: string]:
                        | undefined
                        | {
                            bigdecimalValue?: (...)
                            | (...);
                            bigintValue?: (...) | (...);
                            boolValue?: (...) | (...) | (...);
                            bytesValue?: (...) | (...);
                            floatValue?: (...) | (...);
                            intValue?: (...) | (...);
                            listValue?: (...) | (...);
                            nullValue?: (...) | (...);
                            stringValue?: (...) | (...);
                            structValue?: (...) | (...);
                            timestampValue?: (...) | (...);
                            tokenValue?: (...) | (...);
                        };
                };
            }[];
            id?: string[];
        },
    ): DBRequest_DBUpsert;
    decode(input: Uint8Array | Reader, length?: number): DBRequest_DBUpsert;
    encode(message: DBRequest_DBUpsert, writer?: Writer): Writer;
    fromJSON(object: any): DBRequest_DBUpsert;
    fromPartial(
        object: {
            data?: { [key: string]: any }[];
            entity?: string[];
            entityData?: {
                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; };
                            timestampValue?: Date;
                            tokenValue?: { amount?: ...; specifiedAt?: ...; token?: ... };
                        };
                };
            }[];
            id?: string[];
        },
    ): DBRequest_DBUpsert;
    toJSON(message: DBRequest_DBUpsert): unknown;
}