' Options: 'Date: 2026-04-04 02:59:46 '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: DeleteMedia.* '''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.Saguna.Common.WebAPIModel.ServiceModels Namespace Global Namespace Eros.Saguna.Common.WebAPIModel.ServiceModels Public Partial Class DeleteMedia Implements IReturn(Of DeleteMediaResponse) ''' '''Guid of the Media File to be deleted. ''' Public Overridable Property MediaFileId As Guid ''' '''File Name to be deleted. ''' Public Overridable Property FileName As String ''' '''Appliance from which media file is to be deleted. ''' Public Overridable Property ApplianceId As Guid ''' '''Container from which media file is to be deleted. Defaults to 'attachments' container for attachments. ''' Public Overridable Property ContainerName As String ''' '''Object connected to the attachment being deleted. ''' Public Overridable Property ConnectedObjectId As Guid ''' '''Licensee Id of the Object owner for which primary image is to be uploaded. ''' Public Overridable Property ConnectedObjectLicenseeId As Guid ''' '''Is the media file being deleted the primary file linked to the object?. ''' Public Overridable Property IsPrimary As Boolean End Class Public Partial Class DeleteMediaResponse Public Overridable Property ResponseStatus As ResponseStatus 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