-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SDK-2372: Add RequirementsNotMetDetailsResponse to IdentityProfileFai…
…lureResponse
- Loading branch information
Showing
3 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
...main/java/com/yoti/api/client/docs/session/retrieve/RequirementNotMetDetailsResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package com.yoti.api.client.docs.session.retrieve; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
public class RequirementNotMetDetailsResponse { | ||
|
||
@JsonProperty("failure_type") | ||
private String failureType; | ||
|
||
@JsonProperty("document_type") | ||
private String documentType; | ||
|
||
@JsonProperty("document_country_iso_code") | ||
private String documentCountryIsoCode; | ||
|
||
@JsonProperty("audit_id") | ||
private String auditId; | ||
|
||
@JsonProperty("details") | ||
private String details; | ||
|
||
public String getFailureType() { | ||
return failureType; | ||
} | ||
|
||
public String getDocumentType() { | ||
return documentType; | ||
} | ||
|
||
public String getDocumentCountryIsoCode() { | ||
return documentCountryIsoCode; | ||
} | ||
|
||
public String getAuditId() { | ||
return auditId; | ||
} | ||
|
||
public String getDetails() { | ||
return details; | ||
} | ||
|
||
} |