UNPKG

@openinc/parse-server-opendash

Version:
24 lines (23 loc) 666 B
import type { Tenant } from "./Tenant"; export interface MES_ArticleAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; artnr: string; name: string; targettime: number; tenant?: Tenant; } export declare class MES_Article extends Parse.Object<MES_ArticleAttributes> { static className: string; constructor(data?: Partial<MES_ArticleAttributes>); get artnr(): string; set artnr(value: string); get name(): string; set name(value: string); get targettime(): number; set targettime(value: number); get tenant(): Tenant | undefined; set tenant(value: Tenant | undefined); }