/* Options: Date: 2026-04-17 11:46:09 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.vionfood.com/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ImportExtendedInvoiceInformation.* //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 { @Route(Path="/Vion/ImportExtendedInvoiceInformation", Verbs="POST") public static class ImportExtendedInvoiceInformation implements IReturn { public String Name = null; public String ContentType = null; public InputStream RequestStream = null; public String getName() { return Name; } public ImportExtendedInvoiceInformation setName(String value) { this.Name = value; return this; } public String getContentType() { return ContentType; } public ImportExtendedInvoiceInformation setContentType(String value) { this.ContentType = value; return this; } public InputStream getRequestStream() { return RequestStream; } public ImportExtendedInvoiceInformation setRequestStream(InputStream value) { this.RequestStream = value; return this; } private static Object responseType = Result.class; public Object getResponseType() { return responseType; } } public static class Result { public String Status = null; public String Message = null; public String getStatus() { return Status; } public Result setStatus(String value) { this.Status = value; return this; } public String getMessage() { return Message; } public Result setMessage(String value) { this.Message = value; return this; } } }