/* Options:
Date: 2026-04-04 08:35:53
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: UpdateContactNotifications.*
//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 NotificationItem
{
public virtual Guid Id { get; set; }
public virtual string Name { get; set; }
}
}
namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel
{
///
///Updates contact notifications
///
[Route("/contact/{ContactId}/updatenotifications", "PUT")]
[Api(Description="Updates contact notifications")]
public partial class UpdateContactNotifications
: IReturn
{
///
///Id of contact to get notification for
///
[ApiMember(Description="Id of contact to get notification for", IsRequired=true, Name="ContactId")]
public virtual Guid ContactId { get; set; }
///
///Id of licensee to get notification for
///
[ApiMember(Description="Id of licensee to get notification for", IsRequired=true, Name="LicenseeId")]
public virtual Guid LicenseeId { get; set; }
///
///Id of suite to get notification for
///
[ApiMember(Description="Id of suite to get notification for", IsRequired=true, Name="SuiteId")]
public virtual Guid SuiteId { get; set; }
///
///List of notification to update
///
[ApiMember(Description="List of notification to update", IsRequired=true, Name="Notifications")]
public virtual List Notifications { get; set; } = [];
}
}