github.com/chnsz/golangsdk@v0.0.0-20240506093406-85a3fbfa605b/openstack/dms/v2/maintainwindows/results.go (about)

     1  package maintainwindows
     2  
     3  // GetResponse response
     4  type GetResponse struct {
     5  	MaintainWindows []MaintainWindow `json:"maintain_windows"`
     6  }
     7  
     8  // MaintainWindow for dms
     9  type MaintainWindow struct {
    10  	ID      int    `json:"seq"`
    11  	Begin   string `json:"begin"`
    12  	End     string `json:"end"`
    13  	Default bool   `json:"default"`
    14  }