Amplication AST Libraries Documentation
    Preparing search index...

    Interface defining the arguments required to create a new Parameter instance.

    Args

    interface Args {
        name: string;
        type: Type;
        docs?: string;
        annotations?: Annotation[];
        final_?: boolean;
        varargs?: boolean;
    }
    Index

    Properties

    name: string

    The name of the parameter

    type: Type

    The type of the parameter

    docs?: string

    Documentation for the parameter

    annotations?: Annotation[]

    Parameter annotations like @PathVariable, @RequestParam, etc.

    final_?: boolean

    Whether this is a final parameter

    varargs?: boolean

    Whether this is a varargs parameter