/* Options: Date: 2026-03-22 21:44:58 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://fbihtaapi.bettor.webhop.biz //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetReportParameters.* //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="/reportParameters", Verbs="GET") public static class GetReportParameters implements IReturn { private static Object responseType = ReportParameters.class; public Object getResponseType() { return responseType; } } public static class ReportParameters { public String id = null; public Integer documentOrdinal = null; public String official = null; public ReportOperation operation = null; public Date dateOfReceipt = null; public String authorizedPersonJMBG = null; public String authorizedPersonFullName = null; public String authorizedPersonLocation = null; public Date authorizedPersonStatementDate = null; public String getId() { return id; } public ReportParameters setId(String value) { this.id = value; return this; } public Integer getDocumentOrdinal() { return documentOrdinal; } public ReportParameters setDocumentOrdinal(Integer value) { this.documentOrdinal = value; return this; } public String getOfficial() { return official; } public ReportParameters setOfficial(String value) { this.official = value; return this; } public ReportOperation getOperation() { return operation; } public ReportParameters setOperation(ReportOperation value) { this.operation = value; return this; } public Date getDateOfReceipt() { return dateOfReceipt; } public ReportParameters setDateOfReceipt(Date value) { this.dateOfReceipt = value; return this; } public String getAuthorizedPersonJMBG() { return authorizedPersonJMBG; } public ReportParameters setAuthorizedPersonJMBG(String value) { this.authorizedPersonJMBG = value; return this; } public String getAuthorizedPersonFullName() { return authorizedPersonFullName; } public ReportParameters setAuthorizedPersonFullName(String value) { this.authorizedPersonFullName = value; return this; } public String getAuthorizedPersonLocation() { return authorizedPersonLocation; } public ReportParameters setAuthorizedPersonLocation(String value) { this.authorizedPersonLocation = value; return this; } public Date getAuthorizedPersonStatementDate() { return authorizedPersonStatementDate; } public ReportParameters setAuthorizedPersonStatementDate(Date value) { this.authorizedPersonStatementDate = value; return this; } } public static enum ReportOperation { @SerializedName("0") PrijavaOdStranePoreznogObveznika(0), @SerializedName("1") PrijavaUImePoreznogObveznika(1), @SerializedName("2") Izmjena(2), @SerializedName("3") IzmjenaPrijavaPoreskeUprave(3); private final int value; ReportOperation(final int intValue) { value = intValue; } public int getValue() { return value; } } }