interface IInput {
    data: {
        config: any;
        created_at?: any;
        enabled: boolean;
        name: string;
        updated_at?: any;
    };
}

Properties

Properties

data: {
    config: any;
    created_at?: any;
    enabled: boolean;
    name: string;
    updated_at?: any;
}

Type declaration

  • config: any

    Configuration settings for the extension

  • Optional created_at?: any

    Timestamp of when the extension was created

  • enabled: boolean

    Indicates whether the extension is enabled

  • name: string

    Unique name of the extension

  • Optional updated_at?: any

    Timestamp of the last update to the extension