interface IInput {
    data: {
        actual_quantity?: null | number;
        order_id: string;
        reason_text?: null | string;
    };
}

Properties

Properties

data: {
    actual_quantity?: null | number;
    order_id: string;
    reason_text?: null | string;
}

Type declaration

  • Optional actual_quantity?: null | number

    Возвращаемое количество (если не указано — выданное количество).

  • order_id: string

    Идентификатор заказа, по которому готовится заявление.

  • Optional reason_text?: null | string

    Причина обращения, как её сформулировал пайщик (попадает в текст заявления).