-
Notifications
You must be signed in to change notification settings - Fork 649
Expand file tree
/
Copy pathBilling.java
More file actions
31 lines (22 loc) · 712 Bytes
/
Billing.java
File metadata and controls
31 lines (22 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package guru.springframework.api.domain;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
public class Billing implements Serializable
{
private Card card;
private Map<String, Object> additionalProperties = new HashMap<String, Object>();
private final static long serialVersionUID = 6577338081290507077L;
public Card getCard() {
return card;
}
public void setCard(Card card) {
this.card = card;
}
public Map<String, Object> getAdditionalProperties() {
return this.additionalProperties;
}
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}