/** * A resource associated with a PortalItem. */ export interface Resource { /** * A the access level of the resource. Only available to the item owner and * organization administrators. */ access?: "private" | "inherit"; /** * A relative path from the the item's /resources/ path to the resource. */ resource: string; /** * The timestamp when the resource was created expressed as milliseconds. */ created: number; /** * The size of the resource in bytes. */ size: number; }