summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/sdc/dcae/composition/model/Value.java
blob: 7b8da578016369a7b6d751d42f266db10343c8ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.onap.sdc.dcae.composition.model;

import java.util.List;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class Value {

    @SerializedName("get_property")
    @Expose
    private List<String> getProperty = null;

    public List<String> getGetProperty() {
        return getProperty;
    }

    public void setGetProperty(List<String> getProperty) {
        this.getProperty = getProperty;
    }

}