All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.commercetools.rmf.diff.Apply Maven / Gradle / Ivy

Go to download

RAML API client code generators based on the REST Modeling Framework. https://github.com/vrapio/rest-modeling-framework

There is a newer version: 1.0.0-20241120142200
Show newest version
package com.commercetools.rmf.diff;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;

import java.util.ArrayList;
import java.util.List;

public class Apply {
    @JacksonXmlProperty(localName = "set")
    private String set;

    @JsonCreator
    public Apply() {
    }

    public Apply(String set) {
        this.set = set;
    }

    public String getSet() {
        return set;
    }

    public void setSet(String set) {
        this.set = set;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy