' Options:
'Date: 2026-04-04 03:05:07
'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: GetObjectDynamicContent.*
'''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
'''
'''Get dynamic content for an object.
'''
Public Partial Class GetObjectDynamicContent
Implements IReturn(Of GetDynamicContentResponse)
'''
'''The object id to retrieve dynamic content for.
'''
Public Overridable Property ObjectId As Guid
'''
'''The dynamic content definition id for the type of dynamic content to retrieve.
'''
Public Overridable Property DynamicContentDefinitionId 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