@xompass/sdk-cloud-api
Version:
Xompass Client for cloud-api
57 lines (56 loc) • 1.52 kB
TypeScript
import { ModelDefinition } from './BaseModels';
import { Log } from './Log';
import { Project } from './Project';
export interface ProcessLayoutInterface {
name?: string;
zoom?: number;
components?: Array<any>;
connectors?: Array<any>;
controls?: Array<any>;
variables?: Array<any>;
created?: Date;
modified?: Date;
deleted?: Date;
id?: any;
projectId?: any;
trackingLogs?: Log[];
container?: any;
project?: Project;
}
export declare class ProcessLayout implements ProcessLayoutInterface {
name: string;
zoom: number;
components: Array<any>;
connectors: Array<any>;
controls: Array<any>;
variables: Array<any>;
created: Date;
modified: Date;
deleted: Date;
id: any;
projectId: any;
trackingLogs?: Log[];
container?: any;
project?: Project;
constructor(data?: ProcessLayoutInterface);
/**
* The name of the model represented by this $resource,
* i.e. `ProcessLayout`.
*/
static getModelName(): string;
/**
* @method factory
* @author Jonathan Casarrubias
* @license MIT
* This method creates an instance of ProcessLayout for dynamic purposes.
*/
static factory(data: ProcessLayoutInterface): ProcessLayout;
/**
* @method getModelDefinition
* @author Julien Ledun
* @license MIT
* This method returns an object that represents some of the model
* definitions.
*/
static getModelDefinition(): ModelDefinition;
}