UNPKG

@mindconnect/mindconnect-nodejs

Version:

MindConnect Library for NodeJS (community based)

210 lines (209 loc) 3.98 kB
export declare namespace IotFileModels { /** * * @export * @interface Badrequest */ interface Badrequest { /** * * @type {string} * @memberof Badrequest */ id?: string; /** * * @type {string} * @memberof Badrequest */ message?: string; } /** * * @export * @interface Conflict */ interface Conflict { /** * * @type {string} * @memberof Conflict */ id?: string; /** * * @type {string} * @memberof Conflict */ message?: string; } /** * * @export * @interface Error */ interface Error { /** * * @type {string} * @memberof Error */ id?: string; /** * * @type {string} * @memberof Error */ message?: string; } /** * * @export * @interface File */ interface File { /** * * @type {string} * @memberof File */ name?: string; /** * * @type {string} * @memberof File */ path?: string; /** * * @type {string} * @memberof File */ type?: string; /** * * @type {number} * @memberof File */ size?: number; /** * * @type {Date} * @memberof File */ timestamp?: Date; /** * * @type {Date} * @memberof File */ created?: Date; /** * * @type {Date} * @memberof File */ updated?: Date; /** * * @type {string} * @memberof File */ createdBy?: string; /** * * @type {string} * @memberof File */ updatedBy?: string; /** * * @type {string} * @memberof File */ description?: string; /** * * @type {number} * @memberof File * !fix: manually fixed to correspond with implementation */ etag?: number; } /** * * @export * @interface Notfound */ interface Notfound { /** * * @type {string} * @memberof Notfound */ id?: string; /** * * @type {string} * @memberof Notfound */ message?: string; } /** * * @export * @interface Notmodified */ interface Notmodified { /** * * @type {string} * @memberof Notmodified */ id?: string; /** * * @type {string} * @memberof Notmodified */ message?: string; } /** * * @export * @interface Rangenotsatisfiable */ interface Rangenotsatisfiable { /** * * @type {string} * @memberof Rangenotsatisfiable */ id?: string; /** * * @type {string} * @memberof Rangenotsatisfiable */ message?: string; } /** * * @export * @interface Unauthorized */ interface Unauthorized { /** * * @type {string} * @memberof Unauthorized */ id?: string; /** * * @type {string} * @memberof Unauthorized */ message?: string; } }