authenticate.go 699 B

123456789101112131415161718192021
  1. package registry // import "github.com/docker/docker/api/types/registry"
  2. // ----------------------------------------------------------------------------
  3. // DO NOT EDIT THIS FILE
  4. // This file was generated by `swagger generate operation`
  5. //
  6. // See hack/generate-swagger-api.sh
  7. // ----------------------------------------------------------------------------
  8. // AuthenticateOKBody authenticate o k body
  9. // swagger:model AuthenticateOKBody
  10. type AuthenticateOKBody struct {
  11. // An opaque token used to authenticate a user after a successful login
  12. // Required: true
  13. IdentityToken string `json:"IdentityToken"`
  14. // The status of the authentication
  15. // Required: true
  16. Status string `json:"Status"`
  17. }