change Template field from string to type map
diff --git a/openstack/orchestration/v1/stacks/results.go b/openstack/orchestration/v1/stacks/results.go
index 84d6f9e..1e60f8a 100644
--- a/openstack/orchestration/v1/stacks/results.go
+++ b/openstack/orchestration/v1/stacks/results.go
@@ -257,7 +257,7 @@
type AbandonedStack struct {
Status string `mapstructure:"status"`
Name string `mapstructure:"name"`
- Template string `mapstructure:"template"`
+ Template map[string]interface{} `mapstructure:"template"`
Action string `mapstructure:"action"`
ID string `mapstructure:"id"`
Resources map[string]interface{} `mapstructure:"resources"`