@servicenow/sdk - v4.9.0
    Preparing search index...
    interface FlowConfigProps {
        allowHighSecurityRoles?: boolean;
        description?: string;
        flowPriority?: "LOW" | "MEDIUM" | "HIGH";
        internalName?: string;
        masterSnapshot?: string;
        name: string;
        protectionPolicy?: "" | "read";
        runAs?: "system" | "user";
        runWithRoles?: (string | Role)[];
    }
    Index

    Properties

    allowHighSecurityRoles?: boolean

    Only valid when runAs is 'user'.

    description?: string
    flowPriority?: "LOW" | "MEDIUM" | "HIGH"
    internalName?: string

    snake_case identifier for the flow, used by the platform for programmatic references. Derived from name if omitted.

    masterSnapshot?: string
    name: string
    protectionPolicy?: "" | "read"
    runAs?: "system" | "user"
    runWithRoles?: (string | Role)[]