Interface StringRestrictions

interface StringRestrictions {
    dataType: "STRING";
    masked?: {
        currentUserIsAuthorizedToReveal: boolean;
        revealUrl?: string;
    };
    maxLength?: number;
    readOnly: boolean;
    required: boolean;
    systemReserved: boolean;
}

Hierarchy (view full)

Properties

dataType
masked?: {
    currentUserIsAuthorizedToReveal: boolean;
    revealUrl?: string;
}
maxLength?: number
readOnly: boolean
required: boolean
systemReserved: boolean