UNPKG

moysklad-api-model

Version:

Объектная модель API МойСклад для TypeScript проектов

10 lines (9 loc) 274 B
import type { Entity } from './Entity'; import type { EntityRef } from './EntityRef'; export interface Discount extends Entity<'discount'> { name: string; active: boolean; allProducts: boolean; agentTags: string[]; assortment?: EntityRef<'product'>[]; }