/* Options: Date: 2025-04-04 07:48:39 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://taxfiling.pwc.de //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CreateUuidAsync.* //ExcludeTypes: //InitializeCollections: False //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.* /** * An asynchronous service to generate a Universal Unique Identifier. */ @Route(Path="/CreateUuidAsync", Verbs="GET") @Api(Description="An asynchronous service to generate a Universal Unique Identifier.") open class CreateUuidAsync : CreateUuidBase(), IReturn<UuidResponse> { companion object { private val responseType = UuidResponse::class.java } override fun getResponseType(): Any? = CreateUuidAsync.responseType } /** * Represents a type that encaspulates a Universal Unique Identifier (UUID). */ @Api(Description="Represents a type that encaspulates a Universal Unique Identifier (UUID).") open class UuidResponse : EricFehlerCodeResponse() { /** * The generated Universal Unique Identifier. */ @ApiMember(Description="The generated Universal Unique Identifier.") open var uuid:String? = null } /** * Specifies a base service to generate a Universal Unique Identifier. */ @Api(Description="Specifies a base service to generate a Universal Unique Identifier.") open class CreateUuidBase : IGet { } /** * Represent a base response that encapsulate any ERiC API function return value. */ @Api(Description="Represent a base response that encapsulate any ERiC API function return value.") open class EricFehlerCodeResponse : ServiceReponseBase() { /** * The status code that the ERiC API function returns. */ @ApiMember(Description="The status code that the ERiC API function returns.") open var statusCode:EricFehlerCode? = null /** * The status message that the ERiC API function returns. */ @ApiMember(Description="The status message that the ERiC API function returns.") open var statusText:String? = null }