(* Options: Date: 2026-04-04 06:49:13 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: DeleteMedia.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Eros.Saguna.Common.WebAPIModel.ServiceModels open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] 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 DeleteMediaResponse() = member val ResponseStatus:ResponseStatus = null with get,set [] [] [] type DeleteMedia() = interface IReturn /// ///Guid of the Media File to be deleted. /// [] member val MediaFileId:Guid = new Guid() with get,set /// ///File Name to be deleted. /// [] member val FileName:String = null with get,set /// ///Appliance from which media file is to be deleted. /// [] member val ApplianceId:Guid = new Guid() with get,set /// ///Container from which media file is to be deleted. Defaults to 'attachments' container for attachments. /// [] member val ContainerName:String = null with get,set /// ///Object connected to the attachment being deleted. /// [] member val ConnectedObjectId:Guid = new Guid() with get,set /// ///Licensee Id of the Object owner for which primary image is to be uploaded. /// [] member val ConnectedObjectLicenseeId:Guid = new Guid() with get,set /// ///Is the media file being deleted the primary file linked to the object?. /// [] member val IsPrimary:Boolean = new Boolean() with get,set