// Code generated by go-swagger; DO NOT EDIT. // (c) 2012-2020 by Taxnexus, Inc. // All rights reserved worldwide. // Proprietary product; unlicensed use is not allowed package contacts import ( "encoding/json" stderrors "errors" "fmt" "io" "code.tnxs.net/vernonkeenan/lib/api/crm/crm_models" "github.com/go-openapi/runtime" "github.com/go-openapi/strfmt" ) // GetContactsReader is a Reader for the GetContacts structure. type GetContactsReader struct { formats strfmt.Registry } // ReadResponse reads a server response into the received o. func (o *GetContactsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (any, error) { switch response.Code() { case 200: result := NewGetContactsOK() if err := result.readResponse(response, consumer, o.formats); err != nil { return nil, err } return result, nil case 401: result := NewGetContactsUnauthorized() if err := result.readResponse(response, consumer, o.formats); err != nil { return nil, err } return nil, result case 403: result := NewGetContactsForbidden() if err := result.readResponse(response, consumer, o.formats); err != nil { return nil, err } return nil, result case 404: result := NewGetContactsNotFound() if err := result.readResponse(response, consumer, o.formats); err != nil { return nil, err } return nil, result case 422: result := NewGetContactsUnprocessableEntity() if err := result.readResponse(response, consumer, o.formats); err != nil { return nil, err } return nil, result case 500: result := NewGetContactsInternalServerError() if err := result.readResponse(response, consumer, o.formats); err != nil { return nil, err } return nil, result default: return nil, runtime.NewAPIError("[GET /contacts] getContacts", response, response.Code()) } } // NewGetContactsOK creates a GetContactsOK with default headers values func NewGetContactsOK() *GetContactsOK { return &GetContactsOK{} } // GetContactsOK describes a response with status code 200, with default header values. // // Response with an array of Contact objects type GetContactsOK struct { AccessControlAllowOrigin string CacheControl string Payload *crm_models.ContactResponse } // IsSuccess returns true when this get contacts o k response has a 2xx status code func (o *GetContactsOK) IsSuccess() bool { return true } // IsRedirect returns true when this get contacts o k response has a 3xx status code func (o *GetContactsOK) IsRedirect() bool { return false } // IsClientError returns true when this get contacts o k response has a 4xx status code func (o *GetContactsOK) IsClientError() bool { return false } // IsServerError returns true when this get contacts o k response has a 5xx status code func (o *GetContactsOK) IsServerError() bool { return false } // IsCode returns true when this get contacts o k response a status code equal to that given func (o *GetContactsOK) IsCode(code int) bool { return code == 200 } // Code gets the status code for the get contacts o k response func (o *GetContactsOK) Code() int { return 200 } func (o *GetContactsOK) Error() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[GET /contacts][%d] getContactsOK %s", 200, payload) } func (o *GetContactsOK) String() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[GET /contacts][%d] getContactsOK %s", 200, payload) } func (o *GetContactsOK) GetPayload() *crm_models.ContactResponse { return o.Payload } func (o *GetContactsOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { // hydrates response header Access-Control-Allow-Origin hdrAccessControlAllowOrigin := response.GetHeader("Access-Control-Allow-Origin") if hdrAccessControlAllowOrigin != "" { o.AccessControlAllowOrigin = hdrAccessControlAllowOrigin } // hydrates response header Cache-Control hdrCacheControl := response.GetHeader("Cache-Control") if hdrCacheControl != "" { o.CacheControl = hdrCacheControl } o.Payload = new(crm_models.ContactResponse) // response payload if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) { return err } return nil } // NewGetContactsUnauthorized creates a GetContactsUnauthorized with default headers values func NewGetContactsUnauthorized() *GetContactsUnauthorized { return &GetContactsUnauthorized{} } // GetContactsUnauthorized describes a response with status code 401, with default header values. // // Access unauthorized, invalid API-KEY was used type GetContactsUnauthorized struct { AccessControlAllowOrigin string Payload *crm_models.Error } // IsSuccess returns true when this get contacts unauthorized response has a 2xx status code func (o *GetContactsUnauthorized) IsSuccess() bool { return false } // IsRedirect returns true when this get contacts unauthorized response has a 3xx status code func (o *GetContactsUnauthorized) IsRedirect() bool { return false } // IsClientError returns true when this get contacts unauthorized response has a 4xx status code func (o *GetContactsUnauthorized) IsClientError() bool { return true } // IsServerError returns true when this get contacts unauthorized response has a 5xx status code func (o *GetContactsUnauthorized) IsServerError() bool { return false } // IsCode returns true when this get contacts unauthorized response a status code equal to that given func (o *GetContactsUnauthorized) IsCode(code int) bool { return code == 401 } // Code gets the status code for the get contacts unauthorized response func (o *GetContactsUnauthorized) Code() int { return 401 } func (o *GetContactsUnauthorized) Error() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[GET /contacts][%d] getContactsUnauthorized %s", 401, payload) } func (o *GetContactsUnauthorized) String() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[GET /contacts][%d] getContactsUnauthorized %s", 401, payload) } func (o *GetContactsUnauthorized) GetPayload() *crm_models.Error { return o.Payload } func (o *GetContactsUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { // hydrates response header Access-Control-Allow-Origin hdrAccessControlAllowOrigin := response.GetHeader("Access-Control-Allow-Origin") if hdrAccessControlAllowOrigin != "" { o.AccessControlAllowOrigin = hdrAccessControlAllowOrigin } o.Payload = new(crm_models.Error) // response payload if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) { return err } return nil } // NewGetContactsForbidden creates a GetContactsForbidden with default headers values func NewGetContactsForbidden() *GetContactsForbidden { return &GetContactsForbidden{} } // GetContactsForbidden describes a response with status code 403, with default header values. // // Access forbidden, account lacks access type GetContactsForbidden struct { AccessControlAllowOrigin string Payload *crm_models.Error } // IsSuccess returns true when this get contacts forbidden response has a 2xx status code func (o *GetContactsForbidden) IsSuccess() bool { return false } // IsRedirect returns true when this get contacts forbidden response has a 3xx status code func (o *GetContactsForbidden) IsRedirect() bool { return false } // IsClientError returns true when this get contacts forbidden response has a 4xx status code func (o *GetContactsForbidden) IsClientError() bool { return true } // IsServerError returns true when this get contacts forbidden response has a 5xx status code func (o *GetContactsForbidden) IsServerError() bool { return false } // IsCode returns true when this get contacts forbidden response a status code equal to that given func (o *GetContactsForbidden) IsCode(code int) bool { return code == 403 } // Code gets the status code for the get contacts forbidden response func (o *GetContactsForbidden) Code() int { return 403 } func (o *GetContactsForbidden) Error() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[GET /contacts][%d] getContactsForbidden %s", 403, payload) } func (o *GetContactsForbidden) String() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[GET /contacts][%d] getContactsForbidden %s", 403, payload) } func (o *GetContactsForbidden) GetPayload() *crm_models.Error { return o.Payload } func (o *GetContactsForbidden) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { // hydrates response header Access-Control-Allow-Origin hdrAccessControlAllowOrigin := response.GetHeader("Access-Control-Allow-Origin") if hdrAccessControlAllowOrigin != "" { o.AccessControlAllowOrigin = hdrAccessControlAllowOrigin } o.Payload = new(crm_models.Error) // response payload if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) { return err } return nil } // NewGetContactsNotFound creates a GetContactsNotFound with default headers values func NewGetContactsNotFound() *GetContactsNotFound { return &GetContactsNotFound{} } // GetContactsNotFound describes a response with status code 404, with default header values. // // Resource was not found type GetContactsNotFound struct { AccessControlAllowOrigin string Payload *crm_models.Error } // IsSuccess returns true when this get contacts not found response has a 2xx status code func (o *GetContactsNotFound) IsSuccess() bool { return false } // IsRedirect returns true when this get contacts not found response has a 3xx status code func (o *GetContactsNotFound) IsRedirect() bool { return false } // IsClientError returns true when this get contacts not found response has a 4xx status code func (o *GetContactsNotFound) IsClientError() bool { return true } // IsServerError returns true when this get contacts not found response has a 5xx status code func (o *GetContactsNotFound) IsServerError() bool { return false } // IsCode returns true when this get contacts not found response a status code equal to that given func (o *GetContactsNotFound) IsCode(code int) bool { return code == 404 } // Code gets the status code for the get contacts not found response func (o *GetContactsNotFound) Code() int { return 404 } func (o *GetContactsNotFound) Error() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[GET /contacts][%d] getContactsNotFound %s", 404, payload) } func (o *GetContactsNotFound) String() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[GET /contacts][%d] getContactsNotFound %s", 404, payload) } func (o *GetContactsNotFound) GetPayload() *crm_models.Error { return o.Payload } func (o *GetContactsNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { // hydrates response header Access-Control-Allow-Origin hdrAccessControlAllowOrigin := response.GetHeader("Access-Control-Allow-Origin") if hdrAccessControlAllowOrigin != "" { o.AccessControlAllowOrigin = hdrAccessControlAllowOrigin } o.Payload = new(crm_models.Error) // response payload if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) { return err } return nil } // NewGetContactsUnprocessableEntity creates a GetContactsUnprocessableEntity with default headers values func NewGetContactsUnprocessableEntity() *GetContactsUnprocessableEntity { return &GetContactsUnprocessableEntity{} } // GetContactsUnprocessableEntity describes a response with status code 422, with default header values. // // Unprocessable Entity, likely a bad parameter type GetContactsUnprocessableEntity struct { AccessControlAllowOrigin string Payload *crm_models.Error } // IsSuccess returns true when this get contacts unprocessable entity response has a 2xx status code func (o *GetContactsUnprocessableEntity) IsSuccess() bool { return false } // IsRedirect returns true when this get contacts unprocessable entity response has a 3xx status code func (o *GetContactsUnprocessableEntity) IsRedirect() bool { return false } // IsClientError returns true when this get contacts unprocessable entity response has a 4xx status code func (o *GetContactsUnprocessableEntity) IsClientError() bool { return true } // IsServerError returns true when this get contacts unprocessable entity response has a 5xx status code func (o *GetContactsUnprocessableEntity) IsServerError() bool { return false } // IsCode returns true when this get contacts unprocessable entity response a status code equal to that given func (o *GetContactsUnprocessableEntity) IsCode(code int) bool { return code == 422 } // Code gets the status code for the get contacts unprocessable entity response func (o *GetContactsUnprocessableEntity) Code() int { return 422 } func (o *GetContactsUnprocessableEntity) Error() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[GET /contacts][%d] getContactsUnprocessableEntity %s", 422, payload) } func (o *GetContactsUnprocessableEntity) String() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[GET /contacts][%d] getContactsUnprocessableEntity %s", 422, payload) } func (o *GetContactsUnprocessableEntity) GetPayload() *crm_models.Error { return o.Payload } func (o *GetContactsUnprocessableEntity) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { // hydrates response header Access-Control-Allow-Origin hdrAccessControlAllowOrigin := response.GetHeader("Access-Control-Allow-Origin") if hdrAccessControlAllowOrigin != "" { o.AccessControlAllowOrigin = hdrAccessControlAllowOrigin } o.Payload = new(crm_models.Error) // response payload if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) { return err } return nil } // NewGetContactsInternalServerError creates a GetContactsInternalServerError with default headers values func NewGetContactsInternalServerError() *GetContactsInternalServerError { return &GetContactsInternalServerError{} } // GetContactsInternalServerError describes a response with status code 500, with default header values. // // Server Internal Error type GetContactsInternalServerError struct { AccessControlAllowOrigin string Payload *crm_models.Error } // IsSuccess returns true when this get contacts internal server error response has a 2xx status code func (o *GetContactsInternalServerError) IsSuccess() bool { return false } // IsRedirect returns true when this get contacts internal server error response has a 3xx status code func (o *GetContactsInternalServerError) IsRedirect() bool { return false } // IsClientError returns true when this get contacts internal server error response has a 4xx status code func (o *GetContactsInternalServerError) IsClientError() bool { return false } // IsServerError returns true when this get contacts internal server error response has a 5xx status code func (o *GetContactsInternalServerError) IsServerError() bool { return true } // IsCode returns true when this get contacts internal server error response a status code equal to that given func (o *GetContactsInternalServerError) IsCode(code int) bool { return code == 500 } // Code gets the status code for the get contacts internal server error response func (o *GetContactsInternalServerError) Code() int { return 500 } func (o *GetContactsInternalServerError) Error() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[GET /contacts][%d] getContactsInternalServerError %s", 500, payload) } func (o *GetContactsInternalServerError) String() string { payload, _ := json.Marshal(o.Payload) return fmt.Sprintf("[GET /contacts][%d] getContactsInternalServerError %s", 500, payload) } func (o *GetContactsInternalServerError) GetPayload() *crm_models.Error { return o.Payload } func (o *GetContactsInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { // hydrates response header Access-Control-Allow-Origin hdrAccessControlAllowOrigin := response.GetHeader("Access-Control-Allow-Origin") if hdrAccessControlAllowOrigin != "" { o.AccessControlAllowOrigin = hdrAccessControlAllowOrigin } o.Payload = new(crm_models.Error) // response payload if err := consumer.Consume(response.Body(), o.Payload); err != nil && !stderrors.Is(err, io.EOF) { return err } return nil }