/* Options: Date: 2024-04-27 21:49:48 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://taxfiling.pwc.de //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetDefinitionKeysAsync.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { /** * An asynchronous service to retrieve keys for the identification of VAT properties. */ @Route(Path="/GetDefinitionKeysAsync", Verbs="GET") @Api(Description="An asynchronous service to retrieve keys for the identification of VAT properties.") public static class GetDefinitionKeysAsync extends GetDefinitionKeysBase implements IReturn> { /** * The year of the assessment (Veranlagungsjahr). */ @ApiMember(Description="The year of the assessment (Veranlagungsjahr).") public Integer year = null; /** * The type of VAT return. */ @ApiMember(Description="The type of VAT return.") public VatType vatType = null; public Integer getYear() { return year; } public GetDefinitionKeysAsync setYear(Integer value) { this.year = value; return this; } public VatType getVatType() { return vatType; } public GetDefinitionKeysAsync setVatType(VatType value) { this.vatType = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static enum VatType { UStVA, UStDV, UStSV, USt, Zm; } /** * Create a VAT return from a Return Builder definition. Use the retrieved values as keys for the dictionary of properties that Return Builder provides. */ @Api(Description="Create a VAT return from a Return Builder definition.\n Use the retrieved values as keys for the dictionary of properties that Return Builder provides.") public static class GetDefinitionKeysBase implements IGet { /** * The year of the assessment (Veranlagungsjahr). */ @ApiMember(Description="The year of the assessment (Veranlagungsjahr).") public Integer year = null; /** * The type of VAT return. */ @ApiMember(Description="The type of VAT return.") public VatType vatType = null; public Integer getYear() { return year; } public GetDefinitionKeysBase setYear(Integer value) { this.year = value; return this; } public VatType getVatType() { return vatType; } public GetDefinitionKeysBase setVatType(VatType value) { this.vatType = value; return this; } } }