-
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
1 parent
a6fbb4f
commit c553405
Showing
2 changed files
with
63 additions
and
1 deletion.
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
40 changes: 40 additions & 0 deletions
40
src/main/java/com/untill/driver/untillapi/payments/Payment.java
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,40 @@ | ||
package com.untill.driver.untillapi.payments; | ||
|
||
public class Payment { | ||
private long id; | ||
private String name; | ||
private int kind; | ||
private String guid; | ||
|
||
public long getId() { | ||
return id; | ||
} | ||
|
||
public void setId(long id) { | ||
this.id = id; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
public int getKind() { | ||
return kind; | ||
} | ||
|
||
public void setKind(int kind) { | ||
this.kind = kind; | ||
} | ||
|
||
public String getGuid() { | ||
return guid; | ||
} | ||
|
||
public void setGuid(String guid) { | ||
this.guid = guid; | ||
} | ||
} |