/* Options: Date: 2026-04-04 03:06:28 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: False //ExportValueTypes: False IncludeTypes: SaveNotificationsOrder.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Eros.Subtle.Canvara.WebAPIModel.ServiceModel; using Eros.Causal.Common.Entity; namespace Eros.Causal.Common.Entity { public partial class StringResponse { public virtual string Result { get; set; } } } namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel { /// ///Updates the order/index of the specified notification /// [Route("/notification/{NotificationId}/index/{Index}", "PUT")] [Api(Description="Updates the order/index of the specified notification")] public partial class SaveNotificationsOrder : IReturn { /// ///Notification Id of the item being updated. /// [ApiMember(DataType="Guid", Description="Notification Id of the item being updated.", Name="NotificationId")] public virtual Guid NotificationId { get; set; } /// ///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 virtual int Index { get; set; } } }