interface JProject<TText> {
    backgroundColor: string;
    createdBy: string;
    creationDate: string;
    defaultLanguage: LOCALES;
    defaultSelectionColor: string;
    description?: TText;
    displayUnit: NonNullable<undefined | "MILLIMETER" | "CENTIMETER" | "METER" | "KILOMETER" | "INCH" | "FOOT" | "YARD" | "MILE" | "NAUTICAL_MILE" | "DEGREE">;
    distanceUnit: NonNullable<undefined | "MILLIMETER" | "CENTIMETER" | "METER" | "KILOMETER" | "INCH" | "FOOT" | "YARD" | "MILE" | "NAUTICAL_MILE" | "DEGREE">;
    id: string;
    initialExtent: null | JServerExtent;
    languages: LOCALES[];
    lastModificationDate: string;
    lastModifiedBy: string;
    listed: boolean;
    mapCrs: string;
    mapUnit: NonNullable<undefined | "MILLIMETER" | "CENTIMETER" | "METER" | "KILOMETER" | "INCH" | "FOOT" | "YARD" | "MILE" | "NAUTICAL_MILE" | "DEGREE">;
    maximumExtent: null | JServerExtent;
    name: TText;
    organizationId: string;
    owners: string[];
    presentationPage?: TText;
    public: boolean;
    rotation: number;
    tags: JTag[];
}

Type Parameters

Hierarchy (view full)

Properties

backgroundColor: string
createdBy: string
creationDate: string
defaultLanguage: LOCALES
defaultSelectionColor: string
description?: TText
displayUnit: NonNullable<undefined | "MILLIMETER" | "CENTIMETER" | "METER" | "KILOMETER" | "INCH" | "FOOT" | "YARD" | "MILE" | "NAUTICAL_MILE" | "DEGREE">
distanceUnit: NonNullable<undefined | "MILLIMETER" | "CENTIMETER" | "METER" | "KILOMETER" | "INCH" | "FOOT" | "YARD" | "MILE" | "NAUTICAL_MILE" | "DEGREE">
id: string
initialExtent: null | JServerExtent
languages: LOCALES[]
lastModificationDate: string
lastModifiedBy: string
listed: boolean
mapCrs: string
mapUnit: NonNullable<undefined | "MILLIMETER" | "CENTIMETER" | "METER" | "KILOMETER" | "INCH" | "FOOT" | "YARD" | "MILE" | "NAUTICAL_MILE" | "DEGREE">
maximumExtent: null | JServerExtent
name: TText
organizationId: string
owners: string[]
presentationPage?: TText
public: boolean
rotation: number
tags: JTag[]