add description and order fields to Tariff type
This commit is contained in:
parent
ced4f8c613
commit
b3729eb344
@ -9,11 +9,10 @@ export interface GetTariffsResponse {
|
|||||||
export interface Tariff {
|
export interface Tariff {
|
||||||
_id: string;
|
_id: string;
|
||||||
name: string;
|
name: string;
|
||||||
|
description?: string;
|
||||||
|
order?: number;
|
||||||
price?: number;
|
price?: number;
|
||||||
isCustom: boolean;
|
isCustom: boolean;
|
||||||
/**
|
|
||||||
* Должен содержать только один элемент
|
|
||||||
*/
|
|
||||||
privileges: PrivilegeWithAmount[];
|
privileges: PrivilegeWithAmount[];
|
||||||
isDeleted: boolean;
|
isDeleted: boolean;
|
||||||
createdAt?: string;
|
createdAt?: string;
|
||||||
|
Loading…
Reference in New Issue
Block a user