/* Options: Date: 2025-12-11 15:49:56 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://catalog-jobs-dev.power.dev //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: InterfaceFlowsByDateRangeRequest.* //ExcludeTypes: //DefaultImports: */ // @Route("/interface-flows/ny-iso-date-range", "POST") export class InterfaceFlowsByDateRangeRequest { public start: string; public end: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'InterfaceFlowsByDateRangeRequest'; } public getMethod() { return 'POST'; } public createResponse() {} }