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

io.sphere.sdk.extensions.TriggerImpl Maven / Gradle / Ivy

There is a newer version: 2.16.0
Show newest version
package io.sphere.sdk.extensions;

import com.fasterxml.jackson.annotation.JsonCreator;
import io.sphere.sdk.models.Base;
import java.util.List;
import javax.annotation.Generated;

@Generated(
    value = "io.sphere.sdk.annotations.processors.generators.ResourceValueImplGenerator",
    comments = "Generated from: io.sphere.sdk.extensions.Trigger"
)
final class TriggerImpl extends Base implements Trigger {
  private List actions;

  private ExtensionResourceType resourceTypeId;

  @JsonCreator
  TriggerImpl(final List actions, final ExtensionResourceType resourceTypeId) {
    this.actions = actions;
    this.resourceTypeId = resourceTypeId;
  }

  public List getActions() {
    return actions;
  }

  public ExtensionResourceType getResourceTypeId() {
    return resourceTypeId;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy