From a7b5d8858cdd389a25ddac09ee107e420026318e Mon Sep 17 00:00:00 2001 From: Alex Lushpai Date: Thu, 30 Aug 2018 17:22:44 +0300 Subject: [PATCH] add mgBot as new integration module type --- v5/types.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/v5/types.go b/v5/types.go index 7c195c7..0fd9c4a 100644 --- a/v5/types.go +++ b/v5/types.go @@ -783,6 +783,7 @@ type Integrations struct { Delivery *Delivery `json:"delivery,omitempty"` Store *Warehouse `json:"store,omitempty"` MgTransport *MgTransport `json:"mgTransport,omitempty"` + MgBot *MgBot `json:"mgBot,omitempty"` } // Delivery type @@ -871,6 +872,8 @@ type MgTransport struct { WebhookUrl string `json:"webhookUrl,omitempty"` } +type MgBot struct{} + /** Cost related types */