Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ProductData ¶
type ProductData struct {
Abbreviation string `json:"abbreviation"`
// PerDocTypeData is a map of each document type (RFC, PRD, etc)
// to the associated data
PerDocTypeData map[string]ProductDocTypeData `json:"perDocTypeData"`
}
ProductData is the data associated with a product or area. This may include product abbreviation, etc.
type ProductDocTypeData ¶
type ProductDocTypeData struct {
FolderID string `json:"folderID"`
LatestDocNumber int `json:"latestDocNumber"`
}
ProductDocTypeData contains data for each document type.
type Products ¶
type Products struct {
// ObjectID should be "products"
ObjectID string `json:"objectID,omitempty"`
Data map[string]ProductData `json:"data"`
}
Products is the slice of product data.
Click to show internal directories.
Click to hide internal directories.