kustomer-client
    Preparing search index...

    Type Alias UpdateKObjectData

    type UpdateKObjectData = {
        body?: {
            createdAt?: string;
            custom?: { [key: string]: never };
            data?: { [key: string]: unknown };
            description?: string;
            externalId?: string;
            icon?: string;
            images?: string[];
            importedAt?: string;
            rev?: number;
            tags?: string[];
            title?: string;
        };
        path: { id: string; name: string };
        query?: never;
        url: "/klasses/{name}/{id}";
    }
    Index

    Properties

    Properties

    body?: {
        createdAt?: string;
        custom?: { [key: string]: never };
        data?: { [key: string]: unknown };
        description?: string;
        externalId?: string;
        icon?: string;
        images?: string[];
        importedAt?: string;
        rev?: number;
        tags?: string[];
        title?: string;
    }
    path: { id: string; name: string }

    Type declaration

    • id: string

      Unique ID of the KObject.

    • name: string

      Klass name of the KObject.

    query?: never
    url: "/klasses/{name}/{id}"