Class CompletionData
Inheritance
System.Object
CompletionData
Namespace: ActiveLogin.Authentication.BankId.Api.Models
Assembly: ActiveLogin.Authentication.BankId.Api.dll
Syntax
public class CompletionData : object
Constructors
| Improve this Doc View SourceCompletionData(User, Device, String, StepUp, String, String, Nullable<String>)
Declaration
public CompletionData(User user, Device device, string bankIdIssueDate, StepUp stepUp, string signature, string ocspResponse, string? risk)
Parameters
Type | Name | Description |
---|---|---|
User | user | |
Device | device | |
System.String | bankIdIssueDate | |
StepUp | stepUp | |
System.String | signature | |
System.String | ocspResponse | |
System.Nullable<System.String> | risk |
Properties
| Improve this Doc View SourceBankIdIssueDate
The date the BankID was issued to the user. The issue date of the ID expressed using ISO 8601 date format YYYY-MM-DD with a UTC time zone offset.
Declaration
public string BankIdIssueDate { get; }
Property Value
Type | Description |
---|---|
System.String |
Device
Information related to the device.
Declaration
public Device Device { get; }
Property Value
Type | Description |
---|---|
Device |
OcspResponse
The OCSP response. String. Base64-encoded. The OCSP response is signed by a certificate that has the same issuer as the certificate being verified. The OSCP response has an extension for Nonce.
Declaration
public string OcspResponse { get; }
Property Value
Type | Description |
---|---|
System.String |
Risk
Indicates the risk level of the order based on data available in the order. Only returned if requested in the order.
Declaration
public string? Risk { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.String> |
Signature
The signature. Base64-encoded. The content of the signature is described in BankID Signature Profile specification.
Declaration
public string Signature { get; }
Property Value
Type | Description |
---|---|
System.String |
StepUp
Information about extra verifications that were part of the transaction.
Declaration
public StepUp StepUp { get; }
Property Value
Type | Description |
---|---|
StepUp |
User
Information related to the user.
Declaration
public User User { get; }
Property Value
Type | Description |
---|---|
User |