interface IInput {
    data: {
        container_id: string;
        is_active?: null | boolean;
        label?: null | string;
    };
}

Properties

Properties

data: {
    container_id: string;
    is_active?: null | boolean;
    label?: null | string;
}

Type declaration

  • container_id: string

    Бокс, который правят.

  • Optional is_active?: null | boolean

    Оставить бокс в обороте. Вывести можно только пустой бокс.

  • Optional label?: null | string

    Новая подпись бокса.