UNPKG

@xompass/sdk-cloud-api

Version:

Xompass Client for cloud-api

44 lines (43 loc) 1.23 kB
import { ModelDefinition } from './BaseModels'; import { Log } from './Log'; export interface BridgeSchedulerKeyInterface { id?: string; ttl?: number; scopes?: Array<any>; enabled?: boolean; created?: Date; modified?: Date; deleted?: Date; trackingLogs?: Log[]; } export declare class BridgeSchedulerKey implements BridgeSchedulerKeyInterface { id: string; ttl: number; scopes: Array<any>; enabled: boolean; created: Date; modified: Date; deleted: Date; trackingLogs?: Log[]; constructor(data?: BridgeSchedulerKeyInterface); /** * The name of the model represented by this $resource, * i.e. `BridgeSchedulerKey`. */ static getModelName(): string; /** * @method factory * @author Jonathan Casarrubias * @license MIT * This method creates an instance of BridgeSchedulerKey for dynamic purposes. */ static factory(data: BridgeSchedulerKeyInterface): BridgeSchedulerKey; /** * @method getModelDefinition * @author Julien Ledun * @license MIT * This method returns an object that represents some of the model * definitions. */ static getModelDefinition(): ModelDefinition; }