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;
}