(* Options: Date: 2026-01-25 18:49:52 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: GetPortalCertificatePinStatus.* //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 /// ///Represents the key type for a password-protected area. /// type EricKeyType = | eSIGNATURE_KEY = 0 | eENCRYPTION_KEY = 1 /// ///A base service to get the PIN status of a password-protected portal certificate. /// [] [] type GetPortalCertificatePinStatusBase() = interface IPost /// ///The portal certificate, whose PIN status is determined. /// [] member val Zertifikat:PortalCertificate = null with get,set /// ///The option for the selection of the key-pair. /// [] member val KeyType:EricKeyType = new EricKeyType() with get,set /// ///Represents the PIN status. /// type EricPinStatus = | STATUS_PIN_OK = 0 | STATUS_PIN_LOCKED = 1 | STATUS_PREVIOUS_PIN_ERROR = 2 | STATUS_LOCKED_IF_PIN_ERROR = 3 [] 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 obtains the PIN status of a given certificate. /// [] [] type GetPinStatusResponse() = inherit EricFehlerCodeResponse() /// ///The PIN status of the provided certificate. /// [] member val PinStatus:EricPinStatus = new EricPinStatus() with get,set /// ///A synchronous service to get the PIN status of a password-protected portal certificate. /// [] [] [] type GetPortalCertificatePinStatus() = inherit GetPortalCertificatePinStatusBase() interface IReturn