/* Options: Date: 2025-04-04 13:52:35 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: CreateUuid.* //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.* /** * A synchronous service to generate a Universal Unique Identifier. */ @Route(Path="/CreateUuid", Verbs="GET") @Api(Description="A synchronous service to generate a Universal Unique Identifier.") open class CreateUuid : CreateUuidBase(), IReturn<UuidResponse> { companion object { private val responseType = UuidResponse::class.java } override fun getResponseType(): Any? = CreateUuid.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 }