/* Options: Date: 2024-10-18 04:14:32 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AddBlobFile.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @DataContract public static class AddBlobFile implements IReturn { @DataMember public String FileName = null; @DataMember public String Type = null; @DataMember public byte[] Image = null; @DataMember public String ExternalID = null; public String getFileName() { return FileName; } public AddBlobFile setFileName(String value) { this.FileName = value; return this; } public String getType() { return Type; } public AddBlobFile setType(String value) { this.Type = value; return this; } public byte[] getImage() { return Image; } public AddBlobFile setImage(byte[] value) { this.Image = value; return this; } public String getExternalID() { return ExternalID; } public AddBlobFile setExternalID(String value) { this.ExternalID = value; return this; } private static Object responseType = AddBlobFileResponse.class; public Object getResponseType() { return responseType; } } public static class AddBlobFileResponse { public UUID BlobFileID = null; public UUID getBlobFileID() { return BlobFileID; } public AddBlobFileResponse setBlobFileID(UUID value) { this.BlobFileID = value; return this; } } }