Skip to content

Commit

Permalink
Payload String
Browse files Browse the repository at this point in the history
  • Loading branch information
Sonali Shakya authored and Sonali Shakya committed Dec 13, 2024
1 parent 302822e commit a0e51ee
Show file tree
Hide file tree
Showing 9 changed files with 103 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/automation-db.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -195,4 +195,23 @@ public SessionDetails getSessionDetails() {
public void setSessionDetails(SessionDetails sessionDetails) {
this.sessionDetails = sessionDetails;
}

@Override
public String toString() {
return "Payload{" +
"id=" + id +
", messageId='" + messageId + '\'' +
", transactionId='" + transactionId + '\'' +
", flowId='" + flowId + '\'' +
", action=" + action +
", bppId='" + bppId + '\'' +
", bapId='" + bapId + '\'' +
", jsonRequest=" + jsonRequest +
", jsonResponse=" + jsonResponse +
", httpStatus=" + httpStatus +
", createdAt=" + createdAt +
", updatedAt=" + updatedAt +
", sessionDetails=" + sessionDetails +
'}';
}
}

0 comments on commit a0e51ee

Please sign in to comment.