Documentation
¶
Overview ¶
Package botdoc implement types definition extraction from documentation.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type API ¶
type API struct {
Version string
Types []Definition
Methods []Definition
}
API definition.
type Definition ¶
type Definition struct {
Name string
RawText string
PrettyDescription string
Fields []Field
Ret *Type
}
Definition of structure (method or object).
type Field ¶
type Field struct {
Type Type
Name string
RawText string
PrettyDescription string
Enum []string
Optional bool
}
Field of object or argument of function.
Click to show internal directories.
Click to hide internal directories.