Files
GoSungrow/iSolarCloud/OLD/call/callRequest_struct.go
2022-02-10 12:55:11 +11:00

17 lines
417 B
Go

package call
const CallRequestCountUrl = "?format=json&object=callrequest&action=count"
type CallRequestCountRequest struct {
}
type CallRequestCountResponse struct {
Total int `json:"total"` // Total number of CallRequests for the specified ApiAppKey/User.
}
const CallRequestReadUrl = "?format=json&object=callrequest&action=read"
type CallRequestReadRequest struct {
}
type CallRequestReadResponse struct {
}