UNPKG

moysklad-api-model

Version:

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

9 lines (8 loc) 265 B
import type { Attribute, AttributePatch } from './Attribute'; export type HasAttributes = { /** Спосок пользовательских полей */ attributes?: Attribute[]; }; export type HasAttributesPatch = { attributes: AttributePatch[]; };