/* Options: Date: 2026-04-04 02:55:38 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SaveNotificationsOrder.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { /** * Updates the order/index of the specified notification */ @Route(Path="/notification/{NotificationId}/index/{Index}", Verbs="PUT") @Api(Description="Updates the order/index of the specified notification") public static class SaveNotificationsOrder implements IReturn { /** * Notification Id of the item being updated. */ @ApiMember(DataType="Guid", Description="Notification Id of the item being updated.", Name="NotificationId") public UUID NotificationId = null; /** * 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 Integer Index = null; public UUID getNotificationId() { return NotificationId; } public SaveNotificationsOrder setNotificationId(UUID value) { this.NotificationId = value; return this; } public Integer getIndex() { return Index; } public SaveNotificationsOrder setIndex(Integer value) { this.Index = value; return this; } private static Object responseType = StringResponse.class; public Object getResponseType() { return responseType; } } public static class StringResponse { public String Result = null; public String getResult() { return Result; } public StringResponse setResult(String value) { this.Result = value; return this; } } }