com.geotab.model.entity.addins.CustomSecurityIdDefinition 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;
/**
* The definition of a custom security ID which can be used to control access to custom Add-Ins.
*
* @deprecated Use {@link CustomSecurityId}
*/
@Getter @Setter
@NoArgsConstructor
@SuperBuilder
public class CustomSecurityIdDefinition {
/**
* Gets or sets the name of the custom security ID definition.
*/
private String name;
/**
* Gets or sets the translations of the custom security ID definition.
*/
private List translations;
}