/* Options: Date: 2026-01-25 01:19:13 Version: 8.90 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://taxfiling.staging.pwc.de //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetPortalCertificatePublicKeyAsync.* //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 get the public key of the provided portal certificate. */ @Route(Path="/GetPortalCertificatePublicKeyAsync", Verbs="POST") @Api(Description="An asynchronous service to get the public key of the provided portal certificate.") open class GetPortalCertificatePublicKeyAsync : GetPortalCertificatePublicKeyBase(), IReturn { companion object { private val responseType = GetPublicKeyResponse::class.java } override fun getResponseType(): Any? = GetPortalCertificatePublicKeyAsync.responseType } /** * Represents a type that encapsulates the return values of the ERiC API function that retrieves the public key of a given certificate. */ @Api(Description="Represents a type that encapsulates the return values of the ERiC API function that retrieves the public key of a given certificate.") open class GetPublicKeyResponse : EricFehlerCodeResponse() { /** * The public key of a given certificate. */ @ApiMember(Description="The public key of a given certificate.") open var rueckgabe:String? = null } /** * Represents a portal certificate that is protected by a password. */ @Api(Description="Represents a portal certificate that is protected by a password.") open class PortalCertificate : FileBase(), ISecuredCertificate { /** * The file name of the certificate. */ @ApiMember(Description="The file name of the certificate.") @StringLength(MaximumLength=128) open var name:String? = null /** * The password to protect the certificate from unauthorized access. */ @StringLength(MaximumLength=255) @ApiMember(Description="The password to protect the certificate from unauthorized access.") override var pin:String? = null /** * The description of the certificate. */ @StringLength(MaximumLength=2147483647) @ApiMember(Description="The description of the certificate.") open var description:String? = null /** * Tags that can be used to label or identify the certificate. */ @ApiMember(Description="Tags that can be used to label or identify the certificate.") open var tags:ArrayList = ArrayList() } /** * A base service to get the public key of a password-protected portal certificate. */ @Api(Description="A base service to get the public key of a password-protected portal certificate.") open class GetPortalCertificatePublicKeyBase : IPost { /** * The portal certificate. */ @ApiMember(Description="The portal certificate.") open var zertifikat:PortalCertificate? = null } /** * Represents a base class for a file with raw data. */ @Api(Description="Represents a base class for a file with raw data.") open class FileBase { /** * The raw data content of the file in bytes. */ @ApiMember(Description="The raw data content of the file in bytes.", Name="Content") open var content:ByteArray? = null } interface ISecuredCertificate { var pin:String? } /** * 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 }