moysklad-api-model
Version:
Объектная модель API МойСклад для TypeScript проектов
16 lines (15 loc) • 467 B
TypeScript
import type { Entity, EntityRef } from '.';
export type ContactPerson = Entity<'contactperson'> & {
/** Наименование */
name: string;
/** Момент последнего обновления */
readonly updated: string;
/** Описание */
description?: string;
/** Внешний код */
externalCode: string;
email?: string;
phone?: string;
position?: string;
agent: EntityRef<'counterparty'>;
};