io.sphere.sdk.subscriptions.PayloadNotIncludedImpl 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 javax.annotation.Generated;
@Generated(
value = "io.sphere.sdk.annotations.processors.generators.ResourceValueImplGenerator",
comments = "Generated from: io.sphere.sdk.subscriptions.PayloadNotIncluded"
)
final class PayloadNotIncludedImpl extends Base implements PayloadNotIncluded {
private String payloadType;
private String reason;
@JsonCreator
PayloadNotIncludedImpl(final String payloadType, final String reason) {
this.payloadType = payloadType;
this.reason = reason;
}
public String getPayloadType() {
return payloadType;
}
public String getReason() {
return reason;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy