Existing Portal Item.

IItem can also be imported from the following packages:

import { IItem } from "@esri/arcgis-rest-portal";
interface IItem {
    categories?: string[];
    created: number;
    culture?: string;
    description?: string;
    documentation?: string;
    extent?: number[][];
    id: string;
    modified: number;
    numViews: number;
    owner: string;
    properties?: any;
    protected?: boolean;
    size: number;
    snippet?: string;
    spatialReference?: ISpatialReference;
    tags: string[];
    title: string;
    type: string;
    typeKeywords?: string[];
    url?: string;
}

Hierarchy

  • IItemAdd
    • IItem

Properties

categories?: string[]
created: number
culture?: string
description?: string
documentation?: string
extent?: number[][]
id: string
modified: number
numViews: number
owner: string
properties?: any
protected?: boolean
size: number
snippet?: string
spatialReference?: ISpatialReference
tags: string[]
title: string
type: string
typeKeywords?: string[]
url?: string