/* Options: Date: 2024-05-17 06:24:49 Version: 6.111 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ThrowCustom400.* //ExcludeTypes: //DefaultImports: */ // @Route("/throwcustom400") // @Route("/throwcustom400/{Message}") export class ThrowCustom400 { public message: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ThrowCustom400'; } public getMethod() { return 'POST'; } public createResponse() {} }