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

io.sphere.sdk.subscriptions.ChangeSubscription Maven / Gradle / Ivy

The newest version!
package io.sphere.sdk.subscriptions;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.sphere.sdk.annotations.ResourceValue;

@JsonDeserialize(as = ChangeSubscriptionImpl.class)
@ResourceValue
public interface ChangeSubscription {
    @JsonProperty("resourceTypeId")
    String getResourceTypeId();

    static ChangeSubscription of(final String resourceType) {
        return new ChangeSubscriptionImpl(resourceType);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy