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

io.sphere.sdk.subscriptions.ChangeSubscriptionImpl 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 com.fasterxml.jackson.annotation.JsonProperty;
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.ChangeSubscription"
)
final class ChangeSubscriptionImpl extends Base implements ChangeSubscription {
  @JsonProperty("resourceTypeId")
  private String resourceTypeId;

  @JsonCreator
  ChangeSubscriptionImpl(@JsonProperty("resourceTypeId") final String resourceTypeId) {
    this.resourceTypeId = resourceTypeId;
  }

  @JsonProperty("resourceTypeId")
  public String getResourceTypeId() {
    return resourceTypeId;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy