com.mparticle.sdk.model.eventprocessing.EventProcessingResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
mParticle Java SDK used to integrate with mParticle's Firehose API
package com.mparticle.sdk.model.eventprocessing;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.mparticle.sdk.model.Message;
public final class EventProcessingResponse extends Message {
@JsonProperty("suspend_subscription")
@JsonInclude(JsonInclude.Include.NON_DEFAULT)
private boolean suspendSubscription;
public EventProcessingResponse() {
super(Type.EVENT_PROCESSING_RESPONSE);
}
}