Skip to content
This repository has been archived by the owner on Dec 25, 2024. It is now read-only.

Commit

Permalink
Support for driving_license_categories (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
mburumaxwell authored Jul 25, 2022
1 parent 8364e72 commit b704521
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
namespace Falu.IdentityVerificationReports;

///
public class IdentityVerificationDocumentVehicleCategory
{
///
public string? Category { get; set; }

///
public DateTimeOffset? Issued { get; set; }

///
public DateTimeOffset? Expires { get; set; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ public class IdentityVerificationReportDocument : AbstractIdentityVerificationRe
/// </summary>
public PhysicalAddress? Address { get; set; }

/// <summary>
/// The driving license vehicle categories.
/// Only populated if this report is for a driving licence.
/// </summary>
public List<IdentityVerificationDocumentVehicleCategory>? DrivingLicenseCategories { get; set; }

/// <summary>
/// Unique identifiers of the files containing images for this document.
/// </summary>
Expand Down

0 comments on commit b704521

Please sign in to comment.