Documentation ¶
Index ¶
Constants ¶
View Source
const HTML_REGEX_PATTERN = `<.*?>`
Variables ¶
View Source
var CoreDataTypes = []string{"String", "Integer", "Boolean", "Object"}
View Source
var Methods []string
View Source
var Types []string
Functions ¶
func FindMethodsAndTypes ¶
func GetDescription ¶
func IsMethodRequired ¶
func IsTypeOptional ¶
Types ¶
type Attrubute ¶
type Attrubute struct { Name string `json:"name"` DataType DataTypeInfo `json:"data_type"` Optional bool `json:"optional"` Description string `json:"description"` }
func GetTypeAttr ¶
type DataTypeInfo ¶
func GetDataType ¶
func GetDataType(children []soup.Root) DataTypeInfo
type Method ¶
type Method struct { Name string `json:"name"` Returns string `json:"returns"` Description string `json:"description"` SampleRequest string `json:"sample_request"` Parameters []Parameter `json:"parameters"` }
func GetMethods ¶
type Parameter ¶
type Parameter struct { Name string `json:"name"` DataType DataTypeInfo `json:"data_type"` Required bool `json:"required"` Description string `json:"description"` }
func GetMethodParams ¶
type Result ¶
func MakeResult ¶
Click to show internal directories.
Click to hide internal directories.