com.geotab.model.entity.addins.CustomSecurityIdTranslation 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 CustomSecurityId}.
*/
@Getter @Setter
@NoArgsConstructor
@SuperBuilder
public class CustomSecurityIdTranslation {
/**
* Gets or sets the two letter language code of the translation.
*/
private String language;
/**
* Gets or sets the description of the {@link CustomSecurityId} in the language specified.
*/
private String name;
}