/* Options: Date: 2026-04-04 02:54:48 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: InsertNotification.* //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 Notification { public virtual Guid NotificationId { get; set; } public virtual Guid NotificationGroupId { get; set; } public virtual string NotificationGroupName { get; set; } public virtual Guid SuiteId { get; set; } public virtual string SuiteName { get; set; } public virtual Guid NotificationValueId { get; set; } public virtual List Roles { get; set; } public virtual string RolesToDisplay { 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 IsAudit { get; set; } public virtual bool IsVisibleToRecipients { get; set; } public virtual bool IsSingleUse { get; set; } public virtual bool Email { get; set; } public virtual bool EmailDefault { get; set; } public virtual Guid EmailTemplateId { get; set; } public virtual string EmailTemplateBody { get; set; } public virtual string EmailSubject { get; set; } public virtual bool SMS { get; set; } public virtual bool SMSDefault { get; set; } public virtual Guid SMSTemplateId { get; set; } public virtual string SMSTemplateBody { get; set; } public virtual bool UpdateNotification { get; set; } public virtual bool UpdateNotificationDefault { get; set; } public virtual Guid UpdateTemplateId { get; set; } public virtual string UpdateTemplateBody { get; set; } public virtual string UpdateSubject { get; set; } public virtual bool Push { get; set; } public virtual bool PushDefault { get; set; } public virtual bool Phone { get; set; } public virtual bool PhoneDefault { get; set; } public virtual Guid ContactIdOwner { get; set; } public virtual string RecordStatus { get; set; } public virtual Guid EmailTemplateDefinitionId { get; set; } public virtual Guid SMSTemplateDefinitionId { get; set; } public virtual Guid UpdateTemplateDefinitionId { get; set; } public virtual int Index { get; set; } } public partial class NotificationRole { public virtual Guid RoleId { get; set; } public virtual string RoleName { get; set; } } } namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel { /// ///Inserts a new notification /// [Route("/notification/insert", "POST")] [Api(Description="Inserts a new notification")] public partial class InsertNotification : IReturn { public virtual Notification Notification { get; set; } } }