Documentation
¶
Index ¶
- func FromJSON(i interface{}, r io.Reader) error
- func ToJSON(i interface{}, w io.Writer) error
- type Attributes
- type Config
- type Handler
- func (h *Handler) CreateCSVFile(dir, fileName string) (*os.File, error)
- func (h *Handler) GetMCLI(w http.ResponseWriter, r *http.Request)
- func (h *Handler) GetMCLIToSearch(w http.ResponseWriter, r *http.Request)
- func (h *Handler) GetMeasureCalcs(w http.ResponseWriter, r *http.Request)
- func (h *Handler) Getmcliquery(w http.ResponseWriter, r *http.Request)
- type MCLIRecords
- type MCLIResponse
- type MeasureCalcRecords
- type MeasureCalcsResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Attributes ¶
type Attributes struct {
Type string `json:"type"`
}
type Handler ¶
type Handler struct {
// contains filtered or unexported fields
}
func (*Handler) CreateCSVFile ¶
func (*Handler) GetMCLIToSearch ¶
func (h *Handler) GetMCLIToSearch(w http.ResponseWriter, r *http.Request)
func (*Handler) GetMeasureCalcs ¶
func (h *Handler) GetMeasureCalcs(w http.ResponseWriter, r *http.Request)
func (*Handler) Getmcliquery ¶
func (h *Handler) Getmcliquery(w http.ResponseWriter, r *http.Request)
type MCLIRecords ¶
type MCLIResponse ¶
type MCLIResponse struct {
TotalSize int `json:"totalSize"`
Done bool `json:"done"`
MCLIRecords []MCLIRecords `json:"records"`
}
type MeasureCalcRecords ¶
type MeasureCalcRecords struct {
Attributes Attributes `json:"attributes"`
FieldToCalc string `json:"CLI_CNR_Field_to_calculate__c"`
Formula string `json:"CLR_CNI_Mesaure_Formula__c"`
Sequence float32 `json:"CLR_CNI_Sequence__c"`
Id string `json:"Id"`
Name string `json:"Name"`
ProgramName string `json:"Program_Name__c"`
IsDeleted bool `json:"IsDeleted"`
}
type MeasureCalcsResponse ¶
type MeasureCalcsResponse struct {
TotalSize int `json:"totalSize"`
Done bool `json:"done"`
MeasureCalcRecords []MeasureCalcRecords `json:"records"`
}
Click to show internal directories.
Click to hide internal directories.