All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sphere.sdk.projects.Project Maven / Gradle / Ivy

There is a newer version: 1.0.0-M12
Show newest version
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