github.com/getong/docker@v1.13.1/api/types/registry/authenticate.go (about)

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