/* Options: Date: 2026-04-04 06:54:18 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: GetContactNotifications.* //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.Causal.Common.Entity; using Eros.Subtle.Canvara.WebAPIModel.ServiceModel; namespace Eros.Causal.Common.Entity { public partial class InputSwitch { public virtual string Id { get; set; } public virtual string Name { get; set; } public virtual bool IsDisabled { get; set; } public virtual bool IsChecked { get; set; } } public partial class NotificationDetails { public virtual Guid NotificationId { get; set; } public virtual string NotificationGroupName { get; set; } public virtual Guid NotificationValueId { get; set; } public virtual string Name { get; set; } public virtual string Description { get; set; } public virtual bool IsMandatory { get; set; } public virtual bool IsCardinality { get; set; } public virtual bool IsSystem { get; set; } public virtual bool IsVisibleToRecipients { get; set; } public virtual int Index { get; set; } public virtual InputSwitch Email { get; set; } public virtual InputSwitch SMS { get; set; } public virtual InputSwitch UpdateNotification { get; set; } public virtual InputSwitch Push { get; set; } public virtual InputSwitch Phone { get; set; } } public partial class NotificationGroup { public virtual string GroupName { get; set; } public virtual List Notifications { get; set; } } } namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel { /// ///Get notifications for the specified contact /// [Route("/contact/{ContactId}/notifications")] [Api(Description="Get notifications for the specified contact")] public partial class GetContactNotifications : IReturn { /// ///Id of contact to get notifications for /// [ApiMember(Description="Id of contact to get notifications for", IsRequired=true, Name="ContactId")] public virtual Guid ContactId { get; set; } /// ///Id of licensee to get notifications for /// [ApiMember(Description="Id of licensee to get notifications for", IsRequired=true, Name="LicenseeId")] public virtual Guid LicenseeId { get; set; } /// ///Id of suite to get notifications for /// [ApiMember(Description="Id of suite to get notifications for", IsRequired=true, Name="Suite")] public virtual Guid SuiteId { get; set; } } [ApiResponse(Description="List of contact notifications")] public partial class GetContactNotificationsResponse { public virtual List Notifications { get; set; } public virtual ResponseStatus ResponseStatus { get; set; } } } namespace ServiceStack { [DataContract] public partial class ResponseStatus : IMeta { [DataMember(Order=1)] public virtual string ErrorCode { get; set; } [DataMember(Order=2)] public virtual string Message { get; set; } [DataMember(Order=3)] public virtual string StackTrace { get; set; } [DataMember(Order=4)] public virtual List Errors { get; set; } [DataMember(Order=5)] public virtual Dictionary Meta { get; set; } } }