/* Options: Date: 2026-03-31 18:56:49 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-dogw.klokgroep.nl/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: GetDocumentAttachmentsByEntityType.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/entity/{EntityType}/{ID}/attachments", "GET") public class GetDocumentAttachmentsByEntityType : IReturn, Codable { public typealias Return = [DocumentAttachment] public var id:String? public var entityType:String? public var includeSelf:Bool? required public init(){} }