(* Options: Date: 2026-01-25 18:50:46 Version: 8.90 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://taxfiling.staging.pwc.de //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetPortalCertificatePublicKey.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace PwC.DigitalHub.Utilities.Domain.IO.Contracts open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Net /// ///Represents a base class for a file with raw data. /// [] [] type FileBase() = /// ///The raw data content of the file in bytes. /// [] member val Content:Byte[] = null with get,set /// ///Represents a portal certificate that is protected by a password. /// [] [] type PortalCertificate() = inherit FileBase() /// ///The file name of the certificate. /// [] [] member val Name:String = null with get,set /// ///The password to protect the certificate from unauthorized access. /// [] [] member val Pin:String = null with get,set /// ///The description of the certificate. /// [] [] member val Description:String = null with get,set /// ///Tags that can be used to label or identify the certificate. /// [] member val Tags:ResizeArray = null with get,set /// ///A base service to get the public key of a password-protected portal certificate. /// [] [] type GetPortalCertificatePublicKeyBase() = interface IPost /// ///The portal certificate. /// [] member val Zertifikat:PortalCertificate = null with get,set [] type ISecuredCertificate = abstract Pin:String with get,set /// ///Represent a base response that encapsulate any ERiC API function return value. /// [] [] type EricFehlerCodeResponse() = inherit ServiceReponseBase() /// ///The status code that the ERiC API function returns. /// [] member val StatusCode:EricFehlerCode = new EricFehlerCode() with get,set /// ///The status message that the ERiC API function returns. /// [] member val StatusText:String = null with get,set /// ///Represents a type that encapsulates the return values of the ERiC API function that retrieves the public key of a given certificate. /// [] [] type GetPublicKeyResponse() = inherit EricFehlerCodeResponse() /// ///The public key of a given certificate. /// [] member val Rueckgabe:String = null with get,set /// ///A synchronous service to get the public key of the provided portal certificate. /// [] [] [] type GetPortalCertificatePublicKey() = inherit GetPortalCertificatePublicKeyBase() interface IReturn