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

io.sphere.sdk.messages.UserProvidedIdentifiersImpl Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonCreator;
import io.sphere.sdk.models.Base;
import io.sphere.sdk.models.ContainerAndKey;
import io.sphere.sdk.models.LocalizedString;
import java.lang.String;
import javax.annotation.Generated;
import javax.annotation.Nullable;

@Generated(
    value = "io.sphere.sdk.annotations.processors.generators.ResourceValueImplGenerator",
    comments = "Generated from: io.sphere.sdk.messages.UserProvidedIdentifiers"
)
final class UserProvidedIdentifiersImpl extends Base implements UserProvidedIdentifiers {
  @Nullable
  private ContainerAndKey containerAndKey;

  @Nullable
  private String customerNumber;

  @Nullable
  private String externalId;

  @Nullable
  private String key;

  @Nullable
  private String orderNumber;

  @Nullable
  private String sku;

  @Nullable
  private LocalizedString slug;

  @JsonCreator
  UserProvidedIdentifiersImpl(@Nullable final ContainerAndKey containerAndKey,
      @Nullable final String customerNumber, @Nullable final String externalId,
      @Nullable final String key, @Nullable final String orderNumber, @Nullable final String sku,
      @Nullable final LocalizedString slug) {
    this.containerAndKey = containerAndKey;
    this.customerNumber = customerNumber;
    this.externalId = externalId;
    this.key = key;
    this.orderNumber = orderNumber;
    this.sku = sku;
    this.slug = slug;
  }

  @Nullable
  public ContainerAndKey getContainerAndKey() {
    return containerAndKey;
  }

  @Nullable
  public String getCustomerNumber() {
    return customerNumber;
  }

  @Nullable
  public String getExternalId() {
    return externalId;
  }

  @Nullable
  public String getKey() {
    return key;
  }

  @Nullable
  public String getOrderNumber() {
    return orderNumber;
  }

  @Nullable
  public String getSku() {
    return sku;
  }

  @Nullable
  public LocalizedString getSlug() {
    return slug;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy