UNPKG

@xompass/sdk-cloud-api

Version:

Xompass Client for cloud-api

56 lines (55 loc) 1.52 kB
import { ModelDefinition } from './BaseModels'; import { Customer } from './Customer'; import { GlobalEventState } from './GlobalEventState'; import { Log } from './Log'; export interface EventStateInterface { name: string; description?: string; type: string; colors: any; created?: Date; modified?: Date; deleted?: Date; id?: any; customerId?: any; globalEventStateId?: any; customer?: Customer; globalEventState?: GlobalEventState; trackingLogs?: Log[]; } export declare class EventState implements EventStateInterface { name: string; description: string; type: string; colors: any; created: Date; modified: Date; deleted: Date; id: any; customerId: any; globalEventStateId: any; customer?: Customer; globalEventState?: GlobalEventState; trackingLogs?: Log[]; constructor(data?: EventStateInterface); /** * The name of the model represented by this $resource, * i.e. `EventState`. */ static getModelName(): string; /** * @method factory * @author Jonathan Casarrubias * @license MIT * This method creates an instance of EventState for dynamic purposes. */ static factory(data: EventStateInterface): EventState; /** * @method getModelDefinition * @author Julien Ledun * @license MIT * This method returns an object that represents some of the model * definitions. */ static getModelDefinition(): ModelDefinition; }