Skip to content
This repository was archived by the owner on Dec 9, 2025. It is now read-only.

Commit 41feccd

Browse files
committed
Seeing if this helps with DiceID callback
1 parent 260acf1 commit 41feccd

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

src/main/java/com/appirio/tech/core/service/identity/representation/DiceStatusRequest.java

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,53 @@
11
package com.appirio.tech.core.service.identity.representation;
22

3+
import com.fasterxml.jackson.annotation.JsonProperty;
4+
35
public class DiceStatusRequest {
46

57
private String type;
68
private String action;
79
private String name;
810
private String email;
11+
@JsonProperty(value = "connection_id")
12+
private String connectionId;
13+
@JsonProperty(value = "credential_exchange_id")
14+
private String credentialExchangeId;
15+
@JsonProperty(value = "presentation_exchange_id")
16+
private String presentationExchangeId;
17+
@JsonProperty(value = "schema_id")
18+
private String schemaId;
19+
20+
public String getConnectionId() {
21+
return connectionId;
22+
}
23+
24+
public void setConnectionId(String connectionId) {
25+
this.connectionId = connectionId;
26+
}
27+
28+
public String getCredentialExchangeId() {
29+
return credentialExchangeId;
30+
}
31+
32+
public void setCredentialExchangeId(String credentialExchangeId) {
33+
this.credentialExchangeId = credentialExchangeId;
34+
}
35+
36+
public String getPresentationExchangeId() {
37+
return presentationExchangeId;
38+
}
39+
40+
public void setPresentationExchangeId(String presentationExchangeId) {
41+
this.presentationExchangeId = presentationExchangeId;
42+
}
43+
44+
public String getSchemaId() {
45+
return schemaId;
46+
}
47+
48+
public void setSchemaId(String schemaId) {
49+
this.schemaId = schemaId;
50+
}
951

1052
public String getType() {
1153
return type;

0 commit comments

Comments
 (0)