amocrm-client
Version:
JS Library for AmoCRM
10 lines (7 loc) • 328 B
text/typescript
import { ICriteria, IEntityAttributes } from "./api";
export type TagCriteria = Partial<Omit<ICriteria<{ id: number, name: string }, never>, "with" | "order">>
export type EmbeddedTag = Partial<ITagAttributes>;
export interface ITagAttributes extends IEntityAttributes {
name: string;
color: string | null;
}