/* Options: Date: 2025-08-05 02:06:59 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CommentGetRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class CommentResponse { public Key: string; public Name: string; public Message: string; public DateCreated: string; public ProfilePictureUrl: string; public ProfilePictureThumbnailUrl: string; public Status: string; public Email: string; public ThreadKey: string; public AuthorIpAddress: string; public CustomData: string; public Rating?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/comments-api/comments/{key}", "GET") export class CommentGetRequest implements IReturn { public Key: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CommentGetRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new CommentResponse(); } }