MCPcopy Create free account
hub / github.com/TruthHun/BookStack / APIDoc

Struct APIDoc

controllers/api/BaseController.go:79–94  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77}
78
79type APIDoc struct {
80 DocumentId int `json:"id"`
81 ParentId int `json:"pid"`
82 DocumentName string `json:"title"`
83 Identify string `json:"identify"`
84 BookId int `json:"book_id"`
85 BookName string `json:"book_name"`
86 OrderSort int `json:"sort"`
87 Release string `json:"content,omitempty"`
88 CreateTime time.Time `json:"created_at,omitempty"`
89 MemberId int `json:"uid"`
90 ModifyTime time.Time `json:"updated_at,omitempty"`
91 Vcnt int `json:"vcnt"`
92 Readed bool `json:"readed"`
93 Bookmark bool `json:"bookmark"`
94}
95
96type UserMoreInfo struct {
97 MemberId int `json:"uid"`

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected