(* Options: Date: 2026-04-04 01:02:26 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: GetObjectDynamicContent.* //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 ObjectDynamicContentModel() = /// ///The dynamic content Id (PKID) /// [] member val ObjectDynamicContentId:Guid = new Guid() with get,set /// ///The object Id this dynamic content record is for. /// [] member val ObjectId:Guid = new Guid() with get,set /// ///The dynamic content definition id that indicates what this dynamic content contains /// [] member val DynamicContentDefinitionId:Guid = new Guid() with get,set /// ///Name of the dynamic content definition /// [] member val DefinitionName:String = null with get,set /// ///The format Id the dynamic content is saved as /// [] member val ContentFormatId:Guid = new Guid() with get,set /// ///Name of the content format /// [] member val ContentFormat:String = null with get,set /// ///The content string regardless of the format. /// [] member val Content:String = null with get,set /// ///XML content if the format is XML /// [] member val XmlContent:String = null with get,set /// ///The contact id of the licensee who owns this record /// [] member val OwnerContactId:Guid = new Guid() with get,set /// ///Record Status of the dynamic content /// [] member val RecordStatus: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 GetDynamicContentResponse() = /// ///Dynamic Content Value. /// [] member val DynamicContent:ObjectDynamicContentModel = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Get dynamic content for an object. /// [] [] [] [] type GetObjectDynamicContent() = interface IReturn /// ///The object id to retrieve dynamic content for. /// [] member val ObjectId:Guid = new Guid() with get,set /// ///The dynamic content definition id for the type of dynamic content to retrieve. /// [] member val DynamicContentDefinitionId:Guid = new Guid() with get,set