We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68189e4 commit 7440700Copy full SHA for 7440700
idempotent-dynamo/src/main/java/io/github/arun0009/idempotent/dynamo/IdempotentItem.java
@@ -112,4 +112,15 @@ public String getResponse() {
112
public void setResponse(String response) {
113
this.response = response;
114
}
115
+
116
+ @Override
117
+ public String toString() {
118
+ return "IdempotentItem{" +
119
+ "key='" + key + '\'' +
120
+ ", processName='" + processName + '\'' +
121
+ ", status='" + status + '\'' +
122
+ ", expirationTimeInMilliSeconds=" + expirationTimeInMilliSeconds +
123
+ ", response='" + response + '\'' +
124
+ '}';
125
+ }
126
0 commit comments