' Options: 'Date: 2026-04-04 04:52:15 '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 '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: False '''ExportValueTypes: False 'IncludeTypes: SaveDynamicContent.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports Eros.Subtle.Canvara.WebAPIModel.Models Imports Eros.Subtle.Canvara.WebAPIModel.ServiceModel Namespace Global Namespace Eros.Subtle.Canvara.WebAPIModel.Models Public Partial Class ObjectDynamicContentModel ''' '''The dynamic content Id (PKID) ''' Public Overridable Property ObjectDynamicContentId As Guid ''' '''The object Id this dynamic content record is for. ''' Public Overridable Property ObjectId As Guid ''' '''The dynamic content definition id that indicates what this dynamic content contains ''' Public Overridable Property DynamicContentDefinitionId As Guid ''' '''Name of the dynamic content definition ''' Public Overridable Property DefinitionName As String ''' '''The format Id the dynamic content is saved as ''' Public Overridable Property ContentFormatId As Guid ''' '''Name of the content format ''' Public Overridable Property ContentFormat As String ''' '''The content string regardless of the format. ''' Public Overridable Property Content As String ''' '''XML content if the format is XML ''' Public Overridable Property XmlContent As String ''' '''The contact id of the licensee who owns this record ''' Public Overridable Property OwnerContactId As Guid ''' '''Record Status of the dynamic content ''' Public Overridable Property RecordStatus As String End Class End Namespace Namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel Public Partial Class GetDynamicContentResponse ''' '''Dynamic Content Value. ''' Public Overridable Property DynamicContent As ObjectDynamicContentModel Public Overridable Property ResponseStatus As ResponseStatus End Class ''' '''Add or update dynamic content. ''' Public Partial Class SaveDynamicContent Implements IReturn(Of GetDynamicContentResponse) ''' '''Dynamic Content details. ''' Public Overridable Property DynamicContent As ObjectDynamicContentModel ''' '''Id of the Dynamic Content record. ''' Public Overridable Property ObjectDynamicContentId As Guid End Class End Namespace Namespace ServiceStack Public Partial Class ResponseStatus Implements IMeta Public Overridable Property ErrorCode As String Public Overridable Property Message As String Public Overridable Property StackTrace As String Public Overridable Property Errors As List(Of ResponseError) Public Overridable Property Meta As Dictionary(Of String, String) Implements IMeta.Meta End Class End Namespace End Namespace