io.sphere.sdk.subscriptions.MessageSubscriptionImpl Maven / Gradle / Ivy
package io.sphere.sdk.subscriptions;
import com.fasterxml.jackson.annotation.JsonCreator;
import io.sphere.sdk.models.Base;
import java.lang.String;
import java.util.List;
import javax.annotation.Generated;
import javax.annotation.Nullable;
@Generated(
value = "io.sphere.sdk.annotations.processors.generators.ResourceValueImplGenerator",
comments = "Generated from: io.sphere.sdk.subscriptions.MessageSubscription"
)
final class MessageSubscriptionImpl extends Base implements MessageSubscription {
private String resourceTypeId;
@Nullable
private List types;
@JsonCreator
MessageSubscriptionImpl(final String resourceTypeId, @Nullable final List types) {
this.resourceTypeId = resourceTypeId;
this.types = types;
}
public String getResourceTypeId() {
return resourceTypeId;
}
@Nullable
public List getTypes() {
return types;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy