mirror of
https://github.com/retailcrm/api-client-go.git
synced 2025-04-02 20:56:17 +03:00
Merge pull request #14 from gwinn/master
Update integration module edit response
This commit is contained in:
commit
ef3c201eb7
2 changed files with 15 additions and 5 deletions
|
@ -1,6 +1,7 @@
|
|||
[](https://travis-ci.org/retailcrm/api-client-go)
|
||||
[](https://travis-ci.org/retailcrm/api-client-go)
|
||||
[](https://github.com/retailcrm/api-client-go/releases)
|
||||
[](https://golang.org/dl/)
|
||||
[](https://golang.org/dl/)
|
||||
[](https://godoc.org/github.com/retailcrm/api-client-go)
|
||||
|
||||
|
||||
# retailCRM API Go client
|
||||
|
@ -107,4 +108,3 @@ func main() {
|
|||
|
||||
* [English](http://www.retailcrm.pro/docs/Developers/Index)
|
||||
* [Russian](http://www.retailcrm.ru/docs/Developers/Index)
|
||||
* [GoDoc](https://godoc.org/github.com/retailcrm/api-client-go)
|
||||
|
|
|
@ -325,8 +325,18 @@ type IntegrationModuleResponse struct {
|
|||
|
||||
// IntegrationModuleEditResponse type
|
||||
type IntegrationModuleEditResponse struct {
|
||||
Success bool `json:"success"`
|
||||
Info map[string]string `json:"info,omitempty,brackets"`
|
||||
Success bool `json:"success"`
|
||||
Info ResponseInfo `json:"info,omitempty,brackets"`
|
||||
}
|
||||
|
||||
type ResponseInfo struct {
|
||||
MgTransportInfo MgInfo `json:"mgTransport,omitempty,brackets"`
|
||||
MgBotInfo MgInfo `json:"mgBot,omitempty,brackets"`
|
||||
}
|
||||
|
||||
type MgInfo struct {
|
||||
EndpointUrl string `json:"endpointUrl"`
|
||||
Token string `json:"token"`
|
||||
}
|
||||
|
||||
// CostsResponse type
|
||||
|
|
Loading…
Add table
Reference in a new issue