io.sphere.sdk.projects.CartValueImpl Maven / Gradle / Ivy
The newest version!
package io.sphere.sdk.projects;
import com.fasterxml.jackson.annotation.JsonCreator;
import io.sphere.sdk.models.Base;
import java.lang.String;
import javax.annotation.Generated;
@Generated(
value = "io.sphere.sdk.annotations.processors.generators.ResourceValueImplGenerator",
comments = "Generated from: io.sphere.sdk.projects.CartValue"
)
final class CartValueImpl extends Base implements CartValue {
private String type;
@JsonCreator
CartValueImpl(final String type) {
this.type = type;
}
public String getType() {
return type;
}
}