re-uploading work
This commit is contained in:
79
web/src/api/models/ApiResponse_SensorResponse.ts
Normal file
79
web/src/api/models/ApiResponse_SensorResponse.ts
Normal file
@@ -0,0 +1,79 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
/**
|
||||
* Standard API response wrapper
|
||||
*/
|
||||
export type ApiResponse_SensorResponse = {
|
||||
/**
|
||||
* Response DTO for sensor information
|
||||
*/
|
||||
data: {
|
||||
/**
|
||||
* Creation timestamp
|
||||
*/
|
||||
created: string;
|
||||
/**
|
||||
* Sensor description
|
||||
*/
|
||||
description: string;
|
||||
/**
|
||||
* Whether the sensor is enabled
|
||||
*/
|
||||
enabled: boolean;
|
||||
/**
|
||||
* Entry point
|
||||
*/
|
||||
entrypoint: string;
|
||||
/**
|
||||
* Sensor ID
|
||||
*/
|
||||
id: number;
|
||||
/**
|
||||
* Human-readable label
|
||||
*/
|
||||
label: string;
|
||||
/**
|
||||
* Pack ID (optional)
|
||||
*/
|
||||
pack?: number | null;
|
||||
/**
|
||||
* Pack reference (optional)
|
||||
*/
|
||||
pack_ref?: string | null;
|
||||
/**
|
||||
* Parameter schema
|
||||
*/
|
||||
param_schema: any | null;
|
||||
/**
|
||||
* Unique reference identifier
|
||||
*/
|
||||
ref: string;
|
||||
/**
|
||||
* Runtime ID
|
||||
*/
|
||||
runtime: number;
|
||||
/**
|
||||
* Runtime reference
|
||||
*/
|
||||
runtime_ref: string;
|
||||
/**
|
||||
* Trigger ID
|
||||
*/
|
||||
trigger: number;
|
||||
/**
|
||||
* Trigger reference
|
||||
*/
|
||||
trigger_ref: string;
|
||||
/**
|
||||
* Last update timestamp
|
||||
*/
|
||||
updated: string;
|
||||
};
|
||||
/**
|
||||
* Optional message
|
||||
*/
|
||||
message?: string | null;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user