@typia/website
    Preparing search index...

    Integer type schema info.

    interface IInteger {
        deprecated?: boolean;
        description?: string;
        enum?: (null | number)[];
        example?: any;
        examples?: Record<string, any>;
        nullable?: boolean;
        title?: string;
        type: "integer";
    }

    Hierarchy (View Summary)

    Index

    Properties

    deprecated?: boolean

    Whether the type is deprecated or not.

    description?: string

    Detailed description of the schema.

    enum?: (null | number)[]

    Enumeration values.

    example?: any

    Example value.

    examples?: Record<string, any>

    List of example values as key-value pairs.

    nullable?: boolean

    Whether to allow null value or not.

    title?: string

    Title of the schema.

    type: "integer"

    Discriminator value of the type.