/* Options: Date: 2025-08-05 01:52:43 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: CommentsBatchUpdateRequest.* //ExcludeTypes: //DefaultImports: */ 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); } } export class CollectionResponse { public TotalCount: number; public Items: CommentResponse[]; public constructor(init?: Partial>) { (Object as any).assign(this, init); } } // @Route("/comments-api/comments/list", "PUT") export class CommentsBatchUpdateRequest implements IReturn> { public Key: string[]; public Status: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CommentsBatchUpdateRequest'; } public getMethod() { return 'PUT'; } public createResponse() { return new CollectionResponse(); } }