/** * Represents a ArticleToDocumentAssociations in Autotask. * Corresponds to the Autotask entity "ArticleToDocumentAssociations". */ export interface ArticleToDocumentAssociations { /** * Autotask field: articleID * Data Type: integer * Required: true * Readonly: false * Reference to: KnowledgeBaseArticle */ articleID: number; /** * Autotask field: associatedDocumentID * Data Type: integer * Required: true * Readonly: false * Reference to: Document */ associatedDocumentID: number; /** * Autotask field: id * Data Type: long * Required: true * Readonly: true */ readonly id: number; } //# sourceMappingURL=ArticleToDocumentAssociations.d.ts.map