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

com.geotab.model.entity.addins.ItemName Maven / Gradle / Ivy

package com.geotab.model.entity.addins;

import java.util.Map;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.experimental.SuperBuilder;

/**
 * An object containing key value pairs for the text that appears on the item.
 * The key is the language and the value is the text, for example: {"EN", "New item"}.
 */
@Getter @Setter
@NoArgsConstructor
@SuperBuilder
public class ItemName {
  /**
   * Gets or sets the language translations for the Item name.
   */
  public Map translations;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy