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