com.geotab.model.entity.addins.CustomSecurityId Maven / Gradle / Ivy
package com.geotab.model.entity.addins;
import java.util.List;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.experimental.SuperBuilder;
/**
* A custom security ID which can be used to control access to custom Add-Ins.
*/
@Getter @Setter
@NoArgsConstructor
@SuperBuilder
public class CustomSecurityId {
/**
* Gets or sets the name of the custom security ID.
*/
private String name;
/**
* Gets or sets the translations of the custom security ID.
*/
private List translations;
}