/* Options: Date: 2026-04-04 04:54:36 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SaveNotificationsOrder.* //ExcludeTypes: //InitializeCollections: False //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.* /** * 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") open class SaveNotificationsOrder : IReturn { /** * Notification Id of the item being updated. */ @ApiMember(DataType="Guid", Description="Notification Id of the item being updated.", Name="NotificationId") open var NotificationId:UUID? = 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") open var Index:Int? = null companion object { private val responseType = StringResponse::class.java } override fun getResponseType(): Any? = SaveNotificationsOrder.responseType } open class StringResponse { open var Result:String? = null }