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