Knowledge base classes
Knowledge Base classes
Section class - BaseCollection:
Property | Type |
Description |
---|---|---|
title | String | category name |
id | Int | category ID |
open | Bool | public or private category |
image | String | section image address |
сategories | [BaseCategory] | array of categories |
Category class - BaseCategory:
Property |
Type | Description |
---|---|---|
title | String | category name |
id | Int | category ID |
open | Bool | public or private category |
articlesTitles | [ArticleTitle] | array of article titles |
Article title class - ArticleTitle:
Property |
Type |
Description |
---|---|---|
title | String | article title |
id | Int | article ID |
views | Int | number of article views |
Article class- Article:
Property |
Type |
Description |
---|---|---|
title | String | article title |
id | Int | article ID |
open | Bool | public or private |
text | String | article text |
category_id | Int | article category ID |
collection_id | Int | section category ID |
views | Int | number of article views |
created_at | String | date of creation |
Article search result class - SearchArticle:
Property |
Type | Description |
---|---|---|
page | Int | page |
last_page | Int | number of pages |
count | Int | number of articles per page |
total_count | Int | total number of articles |
articles | [Article] | array of articles |