UNPKG

moysklad-api-model

Version:

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

9 lines (8 loc) 324 B
import type { MetaType } from './MetaType'; import type { EntityRef } from './EntityRef'; export interface Entity<T extends MetaType = MetaType> extends EntityRef<T> { /** Идентификатор сущности */ readonly id: string; /** ID учетной записи */ readonly accountId: string; }