UNPKG

@xompass/sdk-cloud-api

Version:

Xompass Client for cloud-api

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