terraform/vendor/github.com/opsgenie/opsgenie-go-sdk/integration/integration_responses.go

14 lines
397 B
Go

package integration
// EnableIntegrationResponse holds the result data of the EnableIntegrationRequest.
type EnableIntegrationResponse struct {
Status string `json:"status"`
Code int `json:"code"`
}
// DisableIntegrationResponse holds the result data of the DisableIntegrationRequest.
type DisableIntegrationResponse struct {
Status string `json:"status"`
Code int `json:"code"`
}