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

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

package com.geotab.model.entity.addins;

import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.experimental.SuperBuilder;

/**
 * Language translations of a {@link CustomSecurityIdDefinition}.
 *
 * @deprecated Use {@link CustomSecurityIdTranslation}
 */
@Getter @Setter
@NoArgsConstructor
@SuperBuilder
public class SecurityIdTranslation {
  /**
   * Gets or sets the two letter language code of the translation.
   */
  private String language;

  /**
   * Gets or sets the description of the {@link CustomSecurityIdDefinition} in the language specified.
   */
  private String description;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy