Amplication AST Libraries Documentation
    Preparing search index...

    Configuration arguments for creating a Python assignment statement.

    interface AssignArgs {
        target: string;
        value: string;
        type?: ClassReference;
        isClassVariable?: boolean;
    }
    Index

    Properties

    target: string

    The target variable name

    value: string

    The value to assign

    Type annotation for the target

    isClassVariable?: boolean

    Whether this is a class variable (vs. instance variable)