Interface AppObject

interface AppObject {
    attributes: {
        approved: boolean;
        createdAt: string;
        description: string;
        genericType: "genericObject" | "genericBookmark" | "genericMeasure" | "genericDimension" | "genericVariable";
        id: string;
        name: string;
        objectType: string;
        ownerId: string;
        publishedAt: string;
        updatedAt: string;
    };
    privileges: Privileges;
}

Properties

attributes: {
    approved: boolean;
    createdAt: string;
    description: string;
    genericType: "genericObject" | "genericBookmark" | "genericMeasure" | "genericDimension" | "genericVariable";
    id: string;
    name: string;
    objectType: string;
    ownerId: string;
    publishedAt: string;
    updatedAt: string;
}

Type declaration

  • approved: boolean
  • createdAt: string
  • description: string
  • genericType: "genericObject" | "genericBookmark" | "genericMeasure" | "genericDimension" | "genericVariable"
  • id: string
  • name: string
  • objectType: string
  • ownerId: string
  • publishedAt: string
  • updatedAt: string
privileges: Privileges