github.com/zhuohuang-hust/src-cbuild@v0.0.0-20230105071821-c7aab3e7c840/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/generate-swagger-api.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  }