/* Options: Date: 2024-06-26 11:38:32 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: EaccountingNoteQuery.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/eaccounting/notes", Verbs="GET") public static class EaccountingNoteQuery implements IReturn, ICompany { public UUID CompanyId = null; public UUID getCompanyId() { return CompanyId; } public EaccountingNoteQuery setCompanyId(UUID value) { this.CompanyId = value; return this; } private static Object responseType = NoteQueryResponse.class; public Object getResponseType() { return responseType; } } public static class NoteQueryResponse { public String Id = null; public String Text = null; public Date CreatedUtc = null; public Date ModifiedUtc = null; public String getId() { return Id; } public NoteQueryResponse setId(String value) { this.Id = value; return this; } public String getText() { return Text; } public NoteQueryResponse setText(String value) { this.Text = value; return this; } public Date getCreatedUtc() { return CreatedUtc; } public NoteQueryResponse setCreatedUtc(Date value) { this.CreatedUtc = value; return this; } public Date getModifiedUtc() { return ModifiedUtc; } public NoteQueryResponse setModifiedUtc(Date value) { this.ModifiedUtc = value; return this; } } public static interface ICompany { public UUID CompanyId = null; } }