/* Options: Date: 2025-05-12 15:51:58 Version: 8.53 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: PostObjectToChannel.* //ExcludeTypes: //DefaultImports: */ export interface IReturnVoid { createResponse(): void; } export class CustomType { public id: number; public name: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class SetterType { public id: number; public name: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/channels/{Channel}/object") export class PostObjectToChannel implements IReturnVoid { public toUserId: string; public channel: string; public selector: string; public customType: CustomType; public setterType: SetterType; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'PostObjectToChannel'; } public getMethod() { return 'POST'; } public createResponse() {} }