File tree Expand file tree Collapse file tree
mdx-models/src/main/java/com/mx/path/model/mdx/model/challenges Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ package com .mx .path .model .mdx .model .challenges ;
2+
3+ import lombok .Data ;
4+ import lombok .EqualsAndHashCode ;
5+
6+ import com .mx .path .model .mdx .model .MdxBase ;
7+ import com .mx .path .model .mdx .model .MdxNested ;
8+
9+ @ Data
10+ @ MdxNested
11+ @ EqualsAndHashCode (callSuper = true )
12+ public class Code extends MdxBase <Code > {
13+ private String keyboardType ;
14+ private Integer numRetries ;
15+ private Boolean resendButtonClicked ;
16+ private String resendButtonState ;
17+ private String resendButtonText ;
18+ }
Original file line number Diff line number Diff line change @@ -26,11 +26,12 @@ public final class Question extends MdxBase<Question> {
2626 private String parentQuestionId ;
2727 private Integer width ;
2828 private Button buttonData ;
29- private Image imageData ;
30- private Text textData ;
3129 private Camera cameraData ;
30+ private Code codeData ;
31+ private Image imageData ;
3232 private JsonData jsonData ;
3333 private FederatedLoginData federatedLoginData ;
3434 private HtmlData htmlData ;
3535 private InfoData infoData ;
36+ private Text textData ;
3637}
You can’t perform that action at this time.
0 commit comments