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