Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug: [PAGOPA-1947] - transaction detail error #80

Merged
merged 5 commits into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: pagopa-biz-events-service
description: Microservice for exposing REST APIs about payment receipts.
type: application
version: 0.66.0
appVersion: 0.1.44
version: 0.67.0
appVersion: 0.1.44-1-PAGOPA-1947-transaction-detail-error
dependencies:
- name: microservice-chart
version: 2.4.0
Expand Down
2 changes: 1 addition & 1 deletion helm/values-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ microservice-chart:
fullnameOverride: ""
image:
repository: ghcr.io/pagopa/pagopa-biz-events-service
tag: "0.1.44"
tag: "0.1.44-1-PAGOPA-1947-transaction-detail-error"
pullPolicy: Always
livenessProbe:
httpGet:
Expand Down
2 changes: 1 addition & 1 deletion helm/values-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ microservice-chart:
fullnameOverride: ""
image:
repository: ghcr.io/pagopa/pagopa-biz-events-service
tag: "0.1.44"
tag: "0.1.44-1-PAGOPA-1947-transaction-detail-error"
pullPolicy: Always
livenessProbe:
httpGet:
Expand Down
2 changes: 1 addition & 1 deletion helm/values-uat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ microservice-chart:
fullnameOverride: ""
image:
repository: ghcr.io/pagopa/pagopa-biz-events-service
tag: "0.1.44"
tag: "0.1.44-1-PAGOPA-1947-transaction-detail-error"
pullPolicy: Always
livenessProbe:
httpGet:
Expand Down
2 changes: 1 addition & 1 deletion openapi/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"title": "Biz-Events Service",
"description": "Microservice for exposing REST APIs about payment receipts.",
"termsOfService": "https://www.pagopa.gov.it/",
"version": "0.1.44"
"version": "0.1.44-1-PAGOPA-1947-transaction-detail-error"
},
"servers": [
{
Expand Down
2 changes: 1 addition & 1 deletion openapi/openapi_ec.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"title": "Biz-Events Service",
"description": "Microservice for exposing REST APIs about payment receipts.",
"termsOfService": "https://www.pagopa.gov.it/",
"version": "0.1.44"
"version": "0.1.44-1-PAGOPA-1947-transaction-detail-error"
},
"servers": [
{
Expand Down
2 changes: 1 addition & 1 deletion openapi/openapi_helpdesk.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"title": "Biz-Events Service",
"description": "Microservice for exposing REST APIs about payment receipts.",
"termsOfService": "https://www.pagopa.gov.it/",
"version": "0.1.44"
"version": "0.1.44-1-PAGOPA-1947-transaction-detail-error"
},
"servers": [
{
Expand Down
2 changes: 1 addition & 1 deletion openapi/openapi_io.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"title": "Biz-Events Service",
"description": "Microservice for exposing REST APIs about payment receipts.",
"termsOfService": "https://www.pagopa.gov.it/",
"version": "0.1.44"
"version": "0.1.44-1-PAGOPA-1947-transaction-detail-error"
},
"servers": [
{
Expand Down
2 changes: 1 addition & 1 deletion openapi/openapi_io_patch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"title": "Biz-Events Service",
"description": "Microservice for exposing REST APIs about payment receipts.",
"termsOfService": "https://www.pagopa.gov.it/",
"version": "0.1.44"
"version": "0.1.44-1-PAGOPA-1947-transaction-detail-error"
},
"servers": [
{
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>it.gov.pagopa</groupId>
<artifactId>bizeventsservice</artifactId>
<version>0.1.44</version>
<version>0.1.44-1-PAGOPA-1947-transaction-detail-error</version>
<name>Biz-Events Service</name>
<description>Microservice for exposing REST APIs about payment receipts.</description>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,22 @@

import java.io.Serializable;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;

/**
* Response model for transaction detail API
*/
@Builder
@Data
@NoArgsConstructor
@AllArgsConstructor
@JsonInclude(Include.NON_NULL)
public class CartItem implements Serializable {

private String subject;
private static final long serialVersionUID = -6391592801925923358L;

private String subject;
private String amount;
private UserDetail payee;
private UserDetail debtor;
Expand Down
Loading