io.sphere.sdk.projects.Project Maven / Gradle / Ivy
package io.sphere.sdk.projects;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.core.type.TypeReference;
import io.sphere.sdk.models.Base;
public final class Project extends Base {
private final String key;
@JsonCreator
private Project(final String key) {
this.key = key;
}
public String getKey() {
return key;
}
public static TypeReference typeReference() {
return new TypeReference(){
@Override
public String toString() {
return "TypeReference";
}
};
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy