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

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

There is a newer version: 2.16.0
Show 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.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