
io.sphere.sdk.models.EnumValueImpl Maven / Gradle / Ivy
The newest version!
package io.sphere.sdk.models;
import com.fasterxml.jackson.annotation.JsonCreator;
final class EnumValueImpl extends Base implements EnumValue {
private final String key;
private final String label;
@JsonCreator
EnumValueImpl(final String key, final String label) {
this.key = key;
this.label = label;
}
@Override
public String getKey() {
return key;
}
public String getLabel() {
return label;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy