/* Options: Date: 2026-04-04 04:53:36 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SaveNotificationsOrder.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class StringResponse { public Result: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Updates the order/index of the specified notification */ // @Route("/notification/{NotificationId}/index/{Index}", "PUT") // @Api(Description="Updates the order/index of the specified notification") export class SaveNotificationsOrder implements IReturn { /** @description Notification Id of the item being updated. */ // @ApiMember(DataType="Guid", Description="Notification Id of the item being updated.", Name="NotificationId") public NotificationId: string; /** @description The new index of the notification. Indexes start at 1. */ // @ApiMember(DataType="int", Description="The new index of the notification. Indexes start at 1.", Name="Index") public Index: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SaveNotificationsOrder'; } public getMethod() { return 'PUT'; } public createResponse() { return new StringResponse(); } }