io.sphere.sdk.subscriptions.PubSubDestinationImpl Maven / Gradle / Ivy
The newest version!
package io.sphere.sdk.subscriptions;
import com.fasterxml.jackson.annotation.JsonCreator;
import io.sphere.sdk.models.Base;
import java.lang.String;
import javax.annotation.Generated;
@Generated(
value = "io.sphere.sdk.annotations.processors.generators.ResourceValueImplGenerator",
comments = "Generated from: io.sphere.sdk.subscriptions.PubSubDestination"
)
final class PubSubDestinationImpl extends Base implements PubSubDestination {
private String projectId;
private String topic;
private String type;
@JsonCreator
PubSubDestinationImpl(final String projectId, final String topic, final String type) {
this.projectId = projectId;
this.topic = topic;
this.type = type;
}
public String getProjectId() {
return projectId;
}
public String getTopic() {
return topic;
}
public String getType() {
return type;
}
}