AutoBE
    Preparing search index...

    Null literal for explicit null values.

    Represents explicit null values used in business scenarios where absence of data is meaningful. Important for optional fields, cleared states, and explicit "no value" conditions in API operations and business logic.

    E2E testing scenarios:

    • Optional relationship fields in API request bodies
    • Cleared user preferences in business state
    • Explicit "no selection" states for optional parameters
    • Default null values for optional business data in API operations

    AI decision context: Use when business logic specifically requires null rather than undefined or omitted properties, particularly in API request bodies or when comparing with captured API response data.

    interface INullLiteral {
        type: "nullLiteral";
    }
    Index

    Properties

    Properties

    type: "nullLiteral"

    Type discriminator.