blob: 70711b8048105ab5a91a95fd4afb68372d97276e (
plain)
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
|
package org.onap.vid.model;
import org.codehaus.jackson.annotate.JsonProperty;
/**
* Created by Oren on 7/4/17.
*/
public class Subscriber {
@JsonProperty("global-customer-id")
public String globalCustomerId;
@JsonProperty("subscriber-name")
public String subscriberName;
@JsonProperty("subscriber-type")
public String subscriberType;
@JsonProperty("resource-version")
public String resourceVersion;
}
|