/* Options: Date: 2026-04-04 04:52:07 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: UpdateContactGroupStatus.* //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; namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel { /// ///Archives or Restores a Contact Group record. /// [Route("/contactgroup/{ContactGroupId}/archive", "PUT")] [Route("/contactgroup/{ContactGroupId}/restore", "PUT")] [Api(Description="Archives or Restores a Contact Group record.")] public partial class UpdateContactGroupStatus : IReturn { /// ///ContactGroupId of the Contact group to be deleted /// [ApiMember(Description="ContactGroupId of the Contact group to be deleted", Name="ContactGroupId")] public virtual Guid ContactGroupId { get; set; } /// ///True if the action is Archive, False for Restore. /// [ApiMember(DataType="bool", Description="True if the action is Archive, False for Restore.", IsRequired=true, Name="IsActionArchive", ParameterType="query")] public virtual bool? IsActionArchive { get; set; } } }