io.sphere.sdk.projects.CartClassificationImpl Maven / Gradle / Ivy
package io.sphere.sdk.projects;
import com.fasterxml.jackson.annotation.JsonCreator;
import io.sphere.sdk.models.Base;
import io.sphere.sdk.models.LocalizedEnumValue;
import java.lang.String;
import java.util.Set;
import javax.annotation.Generated;
@Generated(
value = "io.sphere.sdk.annotations.processors.generators.ResourceValueImplGenerator",
comments = "Generated from: io.sphere.sdk.projects.CartClassification"
)
final class CartClassificationImpl extends Base implements CartClassification {
private String type;
private Set values;
@JsonCreator
CartClassificationImpl(final String type, final Set values) {
this.type = type;
this.values = values;
}
public String getType() {
return type;
}
public Set getValues() {
return values;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy