/* Options: Date: 2026-04-04 04:52: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: UpdateContactGroupOrder.* //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 { /// ///Update the order of contacts in the specified contact group /// [Route("/contactgroups/updatecontactgrouporder")] [Api(Description="Update the order of contacts in the specified contact group")] public partial class UpdateContactGroupOrder : IReturn { /// ///Connection of contact to update index in the group /// [ApiMember(Description="Connection of contact to update index in the group", Name="ContactGroupConnectionId")] public virtual Guid ContactGroupConnectionId { get; set; } /// ///The index of the contact in the group /// [ApiMember(Description="The index of the contact in the group", Name="Index")] public virtual int Index { get; set; } } }