/* Options: Date: 2025-08-03 09:03:30 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://monitoring.ox2.com/BazeField.Services/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeviceInfoGetRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class DeviceInfoEntity { public id: number; public description: string; public name: string; public loadOrder: number; public nodeId: string; public nodeName: string; public protocolId: number; public protocolName: string; public connectionString: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class DeviceInfoGetResponse { public devices: { [index: number]: DeviceInfoEntity; }; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/configuration/objects/{ObjectIds}/devices", "GET, POST") export class DeviceInfoGetRequest implements IReturn { public objectIds: string[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DeviceInfoGetRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new DeviceInfoGetResponse(); } }