amocrm-client
Version:
JS Library for AmoCRM
10 lines (9 loc) • 401 B
TypeScript
import { ITagFactory } from "../api/factories/TagFactory";
import ResourceEntity from "../api/ResourceEntity";
import { EmbeddedTag, ITagAttributes } from "../interfaces/tag";
export declare class TagDTO extends ResourceEntity<ITagFactory> implements ITagAttributes {
name: string;
color: string | null;
}
export declare class EmbeddedTagDTO extends TagDTO implements EmbeddedTag {
}