system_time.go 611 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * HCS API
  3. *
  4. * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
  5. *
  6. * API version: 2.1
  7. * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
  8. */
  9. package hcsschema
  10. type SystemTime struct {
  11. Year int32 `json:"Year,omitempty"`
  12. Month int32 `json:"Month,omitempty"`
  13. DayOfWeek int32 `json:"DayOfWeek,omitempty"`
  14. Day int32 `json:"Day,omitempty"`
  15. Hour int32 `json:"Hour,omitempty"`
  16. Minute int32 `json:"Minute,omitempty"`
  17. Second int32 `json:"Second,omitempty"`
  18. Milliseconds int32 `json:"Milliseconds,omitempty"`
  19. }