Interface ICollectionItem

interface ICollectionItem {
    actions: [];
    collectionIds: string[];
    createdAt: string;
    creatorId: string;
    description: string;
    id: string;
    isFavorited: true;
    links: {
        collections: {
            href: string;
        };
        open: {
            href: string;
        };
        self: {
            href: string;
        };
        thumbnail: {
            href: string;
        };
    };
    meta: {
        actions: [];
        collections: {
            id: string;
            name: string;
        }[];
        isFavorited: boolean;
        tags: {
            id: string;
            name: string;
        }[];
    };
    name: string;
    ownerId: string;
    resourceAttributes: {};
    resourceCreatedAt: string;
    resourceCustomAttributes: {};
    resourceId: string;
    resourceLink: string;
    resourceReloadEndTime: string;
    resourceReloadStatus: string;
    resourceSize: {
        appFile: number;
        appMemory: number;
    };
    resourceSubType: string;
    resourceType: string;
    resourceUpdatedAt: string;
    spaceId: string;
    tenantId: string;
    thumbnailId: string;
    updatedAt: string;
    updaterId: string;
}

Properties

actions: []
collectionIds: string[]
createdAt: string
creatorId: string
description: string
id: string
isFavorited: true
links: {
    collections: {
        href: string;
    };
    open: {
        href: string;
    };
    self: {
        href: string;
    };
    thumbnail: {
        href: string;
    };
}

Type declaration

  • collections: {
        href: string;
    }
    • href: string
  • open: {
        href: string;
    }
    • href: string
  • self: {
        href: string;
    }
    • href: string
  • thumbnail: {
        href: string;
    }
    • href: string
meta: {
    actions: [];
    collections: {
        id: string;
        name: string;
    }[];
    isFavorited: boolean;
    tags: {
        id: string;
        name: string;
    }[];
}

Type declaration

  • actions: []
  • collections: {
        id: string;
        name: string;
    }[]
  • isFavorited: boolean
  • tags: {
        id: string;
        name: string;
    }[]
name: string
ownerId: string
resourceAttributes: {}

Type declaration

    resourceCreatedAt: string
    resourceCustomAttributes: {}

    Type declaration

      resourceId: string
      resourceLink: string
      resourceReloadEndTime: string
      resourceReloadStatus: string
      resourceSize: {
          appFile: number;
          appMemory: number;
      }

      Type declaration

      • appFile: number
      • appMemory: number
      resourceSubType: string
      resourceType: string
      resourceUpdatedAt: string
      spaceId: string
      tenantId: string
      thumbnailId: string
      updatedAt: string
      updaterId: string