Merge from ECOMP's repository
[vid.git] / vid-app-common / src / main / java / org / onap / vid / model / Subscriber.java
1 package org.onap.vid.model;
2
3
4 import com.fasterxml.jackson.annotation.JsonProperty;
5
6 /**
7  * Created by Oren on 7/4/17.
8  */
9 public class Subscriber {
10
11     @JsonProperty("global-customer-id")
12     public String globalCustomerId;
13
14     @JsonProperty("subscriber-name")
15     public String subscriberName;
16
17     @JsonProperty("subscriber-type")
18     public String subscriberType;
19
20     @JsonProperty("resource-version")
21     public String resourceVersion;
22
23
24
25
26 }