3dsecure part 1

This commit is contained in:
2019-03-14 23:43:07 +03:00
parent 33fb6702c0
commit 02ff66bd16
14 changed files with 77 additions and 84 deletions

View File

@@ -0,0 +1,14 @@
package ch.pizzapp.android.model;
public class PaymentTokenModel {
private String token;
public String getToken() {
return token != null ? token : "";
}
public void setToken(String token) {
this.token = token;
}
}