github.com/circl-dev/go-swagger@v0.31.0/examples/authentication/client/customers/create_responses.go (about) 1 // Code generated by go-swagger; DO NOT EDIT. 2 3 package customers 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/authentication/models" 16 ) 17 18 // CreateReader is a Reader for the Create structure. 19 type CreateReader struct { 20 formats strfmt.Registry 21 } 22 23 // ReadResponse reads a server response into the received o. 24 func (o *CreateReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) { 25 switch response.Code() { 26 case 201: 27 result := NewCreateCreated() 28 if err := result.readResponse(response, consumer, o.formats); err != nil { 29 return nil, err 30 } 31 return result, nil 32 default: 33 result := NewCreateDefault(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 // NewCreateCreated creates a CreateCreated with default headers values 45 func NewCreateCreated() *CreateCreated { 46 return &CreateCreated{} 47 } 48 49 /* CreateCreated describes a response with status code 201, with default header values. 50 51 created 52 */ 53 type CreateCreated struct { 54 Payload *models.Customer 55 } 56 57 func (o *CreateCreated) Error() string { 58 return fmt.Sprintf("[POST /customers][%d] createCreated %+v", 201, o.Payload) 59 } 60 func (o *CreateCreated) GetPayload() *models.Customer { 61 return o.Payload 62 } 63 64 func (o *CreateCreated) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { 65 66 o.Payload = new(models.Customer) 67 68 // response payload 69 if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF { 70 return err 71 } 72 73 return nil 74 } 75 76 // NewCreateDefault creates a CreateDefault with default headers values 77 func NewCreateDefault(code int) *CreateDefault { 78 return &CreateDefault{ 79 _statusCode: code, 80 } 81 } 82 83 /* CreateDefault describes a response with status code -1, with default header values. 84 85 error 86 */ 87 type CreateDefault struct { 88 _statusCode int 89 90 Payload *models.Error 91 } 92 93 // Code gets the status code for the create default response 94 func (o *CreateDefault) Code() int { 95 return o._statusCode 96 } 97 98 func (o *CreateDefault) Error() string { 99 return fmt.Sprintf("[POST /customers][%d] create default %+v", o._statusCode, o.Payload) 100 } 101 func (o *CreateDefault) GetPayload() *models.Error { 102 return o.Payload 103 } 104 105 func (o *CreateDefault) 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 }