/* Options: Date: 2026-03-13 22:05:59 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://milliet.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: document.* //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 { /** * Service de création de documents */ @Route(Path="/document/{DocumentType}/{IdEntrepot}/{IdSociete}/{IdDocument}", Verbs="GET") // @Route(Path="/document/{DocumentType}/{IdEntrepot}/{IdGroupe}/{IdSociete}/{Year}/{Month}", Verbs="GET") @Api(Description="Service de création de documents") public static class document implements IReturn { /** * document type */ @ApiMember(DataType="string", Description="document type", IsRequired=true, Name="DocumentType", ParameterType="path") public eapi_document_type_enum documentType = null; /** * n° entrepot */ @ApiMember(DataType="integer", Description="n° entrepot", IsRequired=true, Name="IdEntrepot", ParameterType="path") public Integer idEntrepot = null; /** * n° groupe */ @ApiMember(DataType="integer", Description="n° groupe", IsRequired=true, Name="IdGroupe", ParameterType="path") public Integer idGroupe = null; /** * n° client */ @ApiMember(DataType="integer", Description="n° client", IsRequired=true, Name="IdSociete", ParameterType="path") public Integer idSociete = null; /** * n° document */ @ApiMember(DataType="integer", Description="n° document", IsRequired=true, Name="IdDocument", ParameterType="path", Route="/document/{DocumentType}/{IdEntrepot}/{IdSociete}/{IdDocument}") public Integer idDocument = null; /** * année */ @ApiMember(DataType="integer", Description="année", IsRequired=true, Name="Year", ParameterType="path", Route="/document/{DocumentType}/{IdEntrepot}/{IdSociete}/{Year}/{Month}") public Integer year = null; /** * mois */ @ApiMember(DataType="integer", Description="mois", IsRequired=true, Name="Month", ParameterType="path", Route="/document/{DocumentType}/{IdEntrepot}/{IdSociete}/{Year}/{Month}") public Integer month = null; public eapi_document_type_enum getDocumentType() { return documentType; } public document setDocumentType(eapi_document_type_enum value) { this.documentType = value; return this; } public Integer getIdEntrepot() { return idEntrepot; } public document setIdEntrepot(Integer value) { this.idEntrepot = value; return this; } public Integer getIdGroupe() { return idGroupe; } public document setIdGroupe(Integer value) { this.idGroupe = value; return this; } public Integer getIdSociete() { return idSociete; } public document setIdSociete(Integer value) { this.idSociete = value; return this; } public Integer getIdDocument() { return idDocument; } public document setIdDocument(Integer value) { this.idDocument = value; return this; } public Integer getYear() { return year; } public document setYear(Integer value) { this.year = value; return this; } public Integer getMonth() { return month; } public document setMonth(Integer value) { this.month = value; return this; } private static Object responseType = Object.class; public Object getResponseType() { return responseType; } } public static enum eapi_document_type_enum { Facture, Commande, R98, R99, Balance; } }