github.com/circl-dev/go-swagger@v0.31.0/examples/todo-list-strict/client/todos/find_responses.go (about) 1 // Code generated by go-swagger; DO NOT EDIT. 2 3 package todos 4 5 // This file was generated by the swagger tool. 6 // Editing this file might prove futile when you re-run the swagger generate command 7 8 import ( 9 "fmt" 10 "io" 11 12 "github.com/go-openapi/strfmt" 13 "github.com/circl-dev/runtime" 14 15 "github.com/circl-dev/go-swagger/examples/todo-list/models" 16 ) 17 18 // FindReader is a Reader for the Find structure. 19 type FindReader struct { 20 formats strfmt.Registry 21 } 22 23 // ReadResponse reads a server response into the received o. 24 func (o *FindReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) { 25 switch response.Code() { 26 case 200: 27 result := NewFindOK() 28 if err := result.readResponse(response, consumer, o.formats); err != nil { 29 return nil, err 30 } 31 return result, nil 32 default: 33 result := NewFindDefault(response.Code()) 34 if err := result.readResponse(response, consumer, o.formats); err != nil { 35 return nil, err 36 } 37 if response.Code()/100 == 2 { 38 return result, nil 39 } 40 return nil, result 41 } 42 } 43 44 // NewFindOK creates a FindOK with default headers values 45 func NewFindOK() *FindOK { 46 return &FindOK{} 47 } 48 49 /*FindOK handles this case with default header values. 50 51 OK 52 */ 53 type FindOK struct { 54 Payload []*models.Item 55 } 56 57 func (o *FindOK) Error() string { 58 return fmt.Sprintf("[GET /][%d] findOK %+v", 200, o.Payload) 59 } 60 61 func (o *FindOK) GetPayload() []*models.Item { 62 return o.Payload 63 } 64 65 func (o *FindOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { 66 67 // response payload 68 if err := consumer.Consume(response.Body(), &o.Payload); err != nil && err != io.EOF { 69 return err 70 } 71 72 return nil 73 } 74 75 // NewFindDefault creates a FindDefault with default headers values 76 func NewFindDefault(code int) *FindDefault { 77 return &FindDefault{ 78 _statusCode: code, 79 } 80 } 81 82 /*FindDefault handles this case with default header values. 83 84 error 85 */ 86 type FindDefault struct { 87 _statusCode int 88 89 Payload *models.Error 90 } 91 92 // Code gets the status code for the find default response 93 func (o *FindDefault) Code() int { 94 return o._statusCode 95 } 96 97 func (o *FindDefault) Error() string { 98 return fmt.Sprintf("[GET /][%d] find default %+v", o._statusCode, o.Payload) 99 } 100 101 func (o *FindDefault) GetPayload() *models.Error { 102 return o.Payload 103 } 104 105 func (o *FindDefault) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { 106 107 o.Payload = new(models.Error) 108 109 // response payload 110 if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF { 111 return err 112 } 113 114 return nil 115 }