mirror of
https://github.com/MickMake/GoSungrow.git
synced 2025-12-05 02:01:33 +01:00
17 lines
417 B
Go
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 {
|
|
}
|