Tests restructuration and AppsConfig implementation

This commit is contained in:
2018-10-16 14:38:32 +02:00
parent f40f6afa5c
commit 1cc321d657
6 changed files with 267 additions and 76 deletions

View File

@ -90,6 +90,24 @@ type AppResponse struct {
} `json:"ocs"`
}
type AppConfigResponse struct {
Ocs struct {
Meta Meta `json:"meta"`
Data struct {
Data []string `json:"data"`
} `json:"data"`
} `json:"ocs"`
}
type AppcConfigValueResponse struct {
Ocs struct {
Meta Meta `json:"meta"`
Data struct {
Data string `json:"data"`
} `json:"data"`
} `json:"ocs"`
}
//CapabilitiesResponse
type CapabilitiesResponse struct {
Ocs struct {