We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 028c837 commit 796992cCopy full SHA for 796992c
1 file changed
yoti-sdk-api/src/main/java/com/yoti/api/client/docs/session/retrieve/BreakdownResponse.java
@@ -15,6 +15,9 @@ public class BreakdownResponse {
15
@JsonProperty("details")
16
private List<DetailsResponse> details;
17
18
+ @JsonProperty("process")
19
+ private String process;
20
+
21
public String getSubCheck() {
22
return subCheck;
23
}
@@ -27,4 +30,8 @@ public List<? extends DetailsResponse> getDetails() {
27
30
return details;
28
31
29
32
33
+ public String getProcess() {
34
+ return process;
35
+ }
36
37
0 commit comments