/* auto-generated by CLI: af resources generate aviw_Production_Elements_All \ --id dsElements \ --types \ --max-records 100 \ --fields PrimKey,ProjectID,ElementID,ProjectName,Name */ import { generateApiDataObject } from "@olenbetong/appframe-data"; export type ElementsRecord = { PrimKey: string; ProjectID: string; ProjectName: string; ElementID: string | null; Name: string | null; }; export const dsElements = generateApiDataObject({ resource: "aviw_Production_Elements_All", id: "dsElements", allowUpdate: false, allowInsert: false, allowDelete: false, dynamicLoading: false, fields: [ { name: "PrimKey", type: "string", nullable: false, }, { name: "ProjectID", type: "string", nullable: false, }, { name: "ProjectName", type: "string", nullable: false, }, { name: "ElementID", type: "string", nullable: true, }, { name: "Name", type: "string", nullable: true, }, ], parameters: { maxRecords: 100, }, });