@xompass/sdk-cloud-api
Version:
Xompass Client for cloud-api
46 lines (45 loc) • 1.25 kB
TypeScript
import { ModelDefinition } from './BaseModels';
import { Log } from './Log';
export interface NotificationQueueInterface {
data: any;
created?: Date;
modified?: Date;
deleted?: Date;
id?: any;
modelId?: string;
modelName?: string;
trackingLogs?: Log[];
instance?: any;
}
export declare class NotificationQueue implements NotificationQueueInterface {
data: any;
created: Date;
modified: Date;
deleted: Date;
id: any;
modelId: string;
modelName: string;
trackingLogs?: Log[];
instance?: any;
constructor(data?: NotificationQueueInterface);
/**
* The name of the model represented by this $resource,
* i.e. `NotificationQueue`.
*/
static getModelName(): string;
/**
* @method factory
* @author Jonathan Casarrubias
* @license MIT
* This method creates an instance of NotificationQueue for dynamic purposes.
*/
static factory(data: NotificationQueueInterface): NotificationQueue;
/**
* @method getModelDefinition
* @author Julien Ledun
* @license MIT
* This method returns an object that represents some of the model
* definitions.
*/
static getModelDefinition(): ModelDefinition;
}