You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/vendor/github.com/opsgenie/opsgenie-go-sdk/policy/policy_responses.go

14 lines
362 B

package policy
// EnablePolicyResponse holds the result data of the EnablePolicyRequest.
type EnablePolicyResponse struct {
Status string `json:"status"`
Code int `json:"code"`
}
// DisablePolicyResponse holds the result data of the DisablePolicyRequest.
type DisablePolicyResponse struct {
Status string `json:"status"`
Code int `json:"code"`
}