Interface DlpArgSpec

Metadata stored for each DLP argument.

interface DlpArgSpec {
    argId: number;
    isOptional: boolean;
    propertyKey: string | symbol;
}

Properties

argId: number

The DLP argument ID.

isOptional: boolean

Whether this argument may be omitted.

propertyKey: string | symbol

The name of the property.