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