Interface IItem

interface IItem {
    actions: Privileges[];
    collectionIds: string[];
    createdAt: string;
    creatorId: string;
    description: string;
    id: string;
    isFavorited: boolean;
    itemViews: {};
    links: ILinks;
    meta: {
        actions: Privileges[];
        collections: string[];
        isFavorited: boolean;
        tags: {
            id: string;
            name: string;
        }[];
    };
    name: string;
    ownerId: string;
    resourceAttributes: IApp | IResourceAttributeNote | IResourceAttributeLink;
    resourceCreatedAt: string;
    resourceCustomAttributes: null;
    resourceId: string;
    resourceReloadEndTime: string;
    resourceReloadStatus: string;
    resourceSize: {
        appFile: number;
        appMemory: number;
    };
    resourceType: ResourceType;
    resourceUpdatedAt: string;
    tenantId: string;
    updatedAt: string;
    updaterId: string;
}

Properties

actions: Privileges[]
collectionIds: string[]
createdAt: string
creatorId: string
description: string
id: string
isFavorited: boolean
itemViews: {}

Type declaration

    links: ILinks
    meta: {
        actions: Privileges[];
        collections: string[];
        isFavorited: boolean;
        tags: {
            id: string;
            name: string;
        }[];
    }

    Type declaration

    • actions: Privileges[]
    • collections: string[]
    • isFavorited: boolean
    • tags: {
          id: string;
          name: string;
      }[]
    name: string
    ownerId: string
    resourceCreatedAt: string
    resourceCustomAttributes: null
    resourceId: string
    resourceReloadEndTime: string
    resourceReloadStatus: string
    resourceSize: {
        appFile: number;
        appMemory: number;
    }

    Type declaration

    • appFile: number
    • appMemory: number
    resourceType: ResourceType
    resourceUpdatedAt: string
    tenantId: string
    updatedAt: string
    updaterId: string