/* Options: Date: 2026-03-31 21:22:42 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ImportCustomEntityData.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { public static class ImportCustomEntityData { public String Entitytype = null; public byte[] FileData = null; public String FileType = null; public String FixedValues = null; public String getEntitytype() { return Entitytype; } public ImportCustomEntityData setEntitytype(String value) { this.Entitytype = value; return this; } public byte[] getFileData() { return FileData; } public ImportCustomEntityData setFileData(byte[] value) { this.FileData = value; return this; } public String getFileType() { return FileType; } public ImportCustomEntityData setFileType(String value) { this.FileType = value; return this; } public String getFixedValues() { return FixedValues; } public ImportCustomEntityData setFixedValues(String value) { this.FixedValues = value; return this; } } }