id_response.go 349 B

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