11 lines
251 B
Go
11 lines
251 B
Go
package request
|
|
|
|
type ChartSelection struct {
|
|
StartDate string `json:"start_date"`
|
|
EndDate string `json:"end_date"`
|
|
Product string `json:"product"`
|
|
Lot string `json:"lot"`
|
|
Step string `json:"step"`
|
|
PBI string `json:"pbi"`
|
|
}
|