/* Options: Date: 2024-07-04 03:08:35 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://cip-reporting-dev.chargeitpro.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: LogsRequest.* //ExcludeTypes: //DefaultImports: */ // @Route("/Logs/List/{CID}") export class LogsRequest { public CID: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'LogsRequest'; } public getMethod() { return 'GET'; } public createResponse() {} }