/* Options: Date: 2026-03-22 21:55:04 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: FindTaxAuthorityId.* //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="/taxAuthorityId", Verbs="GET") public static class FindTaxAuthorityId implements IReturn { public String id = null; public String getId() { return id; } public FindTaxAuthorityId setId(String value) { this.id = value; return this; } private static Object responseType = TakenTaxAuthorityId.class; public Object getResponseType() { return responseType; } } public static class TakenTaxAuthorityId { public String id = null; public String taxAuthorityId = null; public String taxAuthorityIdUserInfo = null; public String getId() { return id; } public TakenTaxAuthorityId setId(String value) { this.id = value; return this; } public String getTaxAuthorityId() { return taxAuthorityId; } public TakenTaxAuthorityId setTaxAuthorityId(String value) { this.taxAuthorityId = value; return this; } public String getTaxAuthorityIdUserInfo() { return taxAuthorityIdUserInfo; } public TakenTaxAuthorityId setTaxAuthorityIdUserInfo(String value) { this.taxAuthorityIdUserInfo = value; return this; } } }