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

io.sphere.sdk.projects.CartValueImpl Maven / Gradle / Ivy

The newest version!
package io.sphere.sdk.projects;

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.projects.CartValue"
)
final class CartValueImpl extends Base implements CartValue {
  private String type;

  @JsonCreator
  CartValueImpl(final String type) {
    this.type = type;
  }

  public String getType() {
    return type;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy