Interface IITemCollections

interface IITemCollections {
    createdAt: string;
    creatorId: string;
    description: string;
    id: string;
    itemCount: number;
    links: {
        items: {
            href: string;
        };
        self: {
            href: string;
        };
    };
    meta: {
        items: {
            data: IItem[];
            links: {
                collection: {
                    href: string;
                };
                next: {
                    href: string;
                };
                prev: {
                    href: string;
                };
                self: {
                    href: string;
                };
            };
        };
    };
    name: string;
    tenantId: string;
    type: string;
    updatedAt: string;
    updaterId: string;
}

Properties

createdAt: string
creatorId: string
description: string
id: string
itemCount: number
links: {
    items: {
        href: string;
    };
    self: {
        href: string;
    };
}

Type declaration

  • items: {
        href: string;
    }
    • href: string
  • self: {
        href: string;
    }
    • href: string
meta: {
    items: {
        data: IItem[];
        links: {
            collection: {
                href: string;
            };
            next: {
                href: string;
            };
            prev: {
                href: string;
            };
            self: {
                href: string;
            };
        };
    };
}

Type declaration

  • items: {
        data: IItem[];
        links: {
            collection: {
                href: string;
            };
            next: {
                href: string;
            };
            prev: {
                href: string;
            };
            self: {
                href: string;
            };
        };
    }
    • data: IItem[]
    • links: {
          collection: {
              href: string;
          };
          next: {
              href: string;
          };
          prev: {
              href: string;
          };
          self: {
              href: string;
          };
      }
      • collection: {
            href: string;
        }
        • href: string
      • next: {
            href: string;
        }
        • href: string
      • prev: {
            href: string;
        }
        • href: string
      • self: {
            href: string;
        }
        • href: string
name: string
tenantId: string
type: string
updatedAt: string
updaterId: string