-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
335 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
package com.adyen.model; | ||
|
||
public class TransactionItem { | ||
private String id; | ||
private String status; | ||
private String type; | ||
private String created; | ||
private String amount; | ||
private String pspReference; | ||
|
||
public String getId() { | ||
return id; | ||
} | ||
|
||
public void setId(String id) { | ||
this.id = id; | ||
} | ||
|
||
public String getStatus() { | ||
return status; | ||
} | ||
|
||
public void setStatus(String status) { | ||
this.status = status; | ||
} | ||
|
||
public String getCreated() { | ||
return created; | ||
} | ||
|
||
public void setCreated(String created) { | ||
this.created = created; | ||
} | ||
|
||
public String getAmount() { | ||
return amount; | ||
} | ||
|
||
public void setAmount(String amount) { | ||
this.amount = amount; | ||
} | ||
|
||
public String getPspReference() { | ||
return pspReference; | ||
} | ||
|
||
public void setPspReference(String pspReference) { | ||
this.pspReference = pspReference; | ||
} | ||
|
||
public String getType() { | ||
return type; | ||
} | ||
|
||
public void setType(String type) { | ||
this.type = type; | ||
} | ||
|
||
public TransactionItem id(String id) { | ||
this.id = id; | ||
return this; | ||
} | ||
|
||
public TransactionItem status(String status) { | ||
this.status = status; | ||
return this; | ||
} | ||
|
||
public TransactionItem created(String created) { | ||
this.created = created; | ||
return this; | ||
} | ||
|
||
public TransactionItem amount(String amount) { | ||
this.amount = amount; | ||
return this; | ||
} | ||
|
||
public TransactionItem pspReference(String pspReference) { | ||
this.pspReference = pspReference; | ||
return this; | ||
} | ||
|
||
public TransactionItem type(String type) { | ||
this.type = type; | ||
return this; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.