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

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

There is a newer version: 2.16.0
Show newest version
package io.sphere.sdk.subscriptions;

import io.sphere.sdk.annotations.FactoryMethod;
import io.sphere.sdk.annotations.ResourceDraftValue;
import io.sphere.sdk.models.WithKey;

import javax.annotation.Nullable;
import java.util.List;

@ResourceDraftValue(
        factoryMethods = @FactoryMethod(parameterNames = {"destination"}))
public interface SubscriptionDraft extends WithKey {

    @Nullable
    String getKey();

    Destination getDestination();

    @Nullable
    List getMessages();

    @Nullable
    List getChanges();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy