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

io.sphere.sdk.subscriptions.IronMqDestinationImpl 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 java.net.URI;
import javax.annotation.Generated;

@Generated(
    value = "io.sphere.sdk.annotations.processors.generators.ResourceValueImplGenerator",
    comments = "Generated from: io.sphere.sdk.subscriptions.IronMqDestination"
)
final class IronMqDestinationImpl extends Base implements IronMqDestination {
  private String type;

  private URI uri;

  @JsonCreator
  IronMqDestinationImpl(final String type, final URI uri) {
    this.type = type;
    this.uri = uri;
  }

  public String getType() {
    return type;
  }

  public URI getUri() {
    return uri;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy