|
1 | 1 | package com.appirio.tech.core.service.identity.representation; |
2 | 2 |
|
| 3 | +import com.fasterxml.jackson.annotation.JsonProperty; |
| 4 | + |
3 | 5 | public class DiceStatusRequest { |
4 | 6 |
|
5 | 7 | private String type; |
6 | 8 | private String action; |
7 | 9 | private String name; |
8 | 10 | 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 | + } |
9 | 51 |
|
10 | 52 | public String getType() { |
11 | 53 | return type; |
|
0 commit comments