(* Options: Date: 2026-04-04 02:56:55 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetCommunicationTemplate.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type CommunicationTemplateModel() = /// ///Communication Template Id /// [] member val CommunicationTemplateId:Guid = new Guid() with get,set /// ///Communication Template Name /// [] member val TemplateName:String = null with get,set /// ///Communication Template Subject /// [] member val Subject:String = null with get,set /// ///Communication Template Content /// [] member val Content:String = null with get,set [] [] type ResponseStatus() = [] member val ErrorCode:String = null with get,set [] member val Message:String = null with get,set [] member val StackTrace:String = null with get,set [] member val Errors:ResizeArray = null with get,set [] member val Meta:Dictionary = null with get,set [] [] type GetCommunicationTemplateResponse() = member val CommunicationTemplate:CommunicationTemplateModel = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Get communication template for the current licensee and contact by setting id. /// [] [] [] type GetCommunicationTemplate() = interface IReturn /// ///Setting Id linked to the communication template to get details for /// [] member val SettingId:Guid = new Guid() with get,set