We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68f3e6d commit b3e2ca6Copy full SHA for b3e2ca6
1 file changed
yoti-sdk-api/src/main/java/com/yoti/api/client/docs/session/retrieve/PageResponse.java
@@ -15,6 +15,9 @@ public class PageResponse {
15
@JsonProperty("frames")
16
private List<FrameResponse> frames;
17
18
+ @JsonProperty("extraction_image_ids")
19
+ private List<String> extractionImageIds;
20
+
21
public String getCaptureMethod() {
22
return captureMethod;
23
}
@@ -27,4 +30,8 @@ public List<? extends FrameResponse> getFrames() {
27
30
return frames;
28
31
29
32
33
+ public List<String> getExtractionImageIds() {
34
+ return extractionImageIds;
35
+ }
36
37
0 commit comments