github.com/zhuohuang-hust/src-cbuild@v0.0.0-20230105071821-c7aab3e7c840/api/types/id_response.go (about)

     1  package types
     2  
     3  // This file was generated by the swagger tool.
     4  // Editing this file might prove futile when you re-run the swagger generate command
     5  
     6  // IDResponse Response to an API call that returns just an Id
     7  // swagger:model IdResponse
     8  type IDResponse struct {
     9  
    10  	// The id of the newly created object.
    11  	// Required: true
    12  	ID string `json:"Id"`
    13  }