/* Options: Date: 2026-04-04 06:46:21 SwiftVersion: 6.0 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: DeleteDynamicContent.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Delete a dynamic content record. */ // @Route("/dynamiccontent/{ObjectDynamicContentId}", "DELETE") // @Api(Description="Delete a dynamic content record.") public class DeleteDynamicContent : IReturn, Codable { public typealias Return = ResponseStatus /** * Id of the Dynamic Content record. */ // @ApiMember(Description="Id of the Dynamic Content record.", ParameterType="path") public var objectDynamicContentId:String? required public init(){} }