// Code generated by go-swagger; DO NOT EDIT. // All Code Copyright(c) 2018-2021 by Taxnexus, Inc. // All rights reserved worldwide. // Proprietary product; unlicensed use is not allowed package domains // This file was generated by the swagger tool. // Editing this file might prove futile when you re-run the swagger generate command import ( "fmt" "io" "github.com/go-openapi/runtime" "github.com/go-openapi/strfmt" "code.tnxs.net/taxnexus/lib/api/sf-gate/sf_gate_models" ) // GetDomainsReader is a Reader for the GetDomains structure. type GetDomainsReader struct { formats strfmt.Registry } // ReadResponse reads a server response into the received o. func (o *GetDomainsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) { switch response.Code() { case 200: result := NewGetDomainsOK() if err := result.readResponse(response, consumer, o.formats); err != nil { return nil, err } return result, nil case 401: result := NewGetDomainsUnauthorized() if err := result.readResponse(response, consumer, o.formats); err != nil { return nil, err } return nil, result case 403: result := NewGetDomainsForbidden() if err := result.readResponse(response, consumer, o.formats); err != nil { return nil, err } return nil, result case 404: result := NewGetDomainsNotFound() if err := result.readResponse(response, consumer, o.formats); err != nil { return nil, err } return nil, result case 422: result := NewGetDomainsUnprocessableEntity() if err := result.readResponse(response, consumer, o.formats); err != nil { return nil, err } return nil, result case 500: result := NewGetDomainsInternalServerError() if err := result.readResponse(response, consumer, o.formats); err != nil { return nil, err } return nil, result default: return nil, runtime.NewAPIError("response status code does not match any response statuses defined for this endpoint in the swagger spec", response, response.Code()) } } // NewGetDomainsOK creates a GetDomainsOK with default headers values func NewGetDomainsOK() *GetDomainsOK { return &GetDomainsOK{} } /* GetDomainsOK describes a response with status code 200, with default header values. Taxnexus Response with an array of Domain objects */ type GetDomainsOK struct { Payload *sf_gate_models.DomainResponse } func (o *GetDomainsOK) Error() string { return fmt.Sprintf("[GET /domains][%d] getDomainsOK %+v", 200, o.Payload) } func (o *GetDomainsOK) GetPayload() *sf_gate_models.DomainResponse { return o.Payload } func (o *GetDomainsOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { o.Payload = new(sf_gate_models.DomainResponse) // response payload if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF { return err } return nil } // NewGetDomainsUnauthorized creates a GetDomainsUnauthorized with default headers values func NewGetDomainsUnauthorized() *GetDomainsUnauthorized { return &GetDomainsUnauthorized{} } /* GetDomainsUnauthorized describes a response with status code 401, with default header values. Access unauthorized, invalid API-KEY was used */ type GetDomainsUnauthorized struct { Payload *sf_gate_models.Error } func (o *GetDomainsUnauthorized) Error() string { return fmt.Sprintf("[GET /domains][%d] getDomainsUnauthorized %+v", 401, o.Payload) } func (o *GetDomainsUnauthorized) GetPayload() *sf_gate_models.Error { return o.Payload } func (o *GetDomainsUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { o.Payload = new(sf_gate_models.Error) // response payload if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF { return err } return nil } // NewGetDomainsForbidden creates a GetDomainsForbidden with default headers values func NewGetDomainsForbidden() *GetDomainsForbidden { return &GetDomainsForbidden{} } /* GetDomainsForbidden describes a response with status code 403, with default header values. Access forbidden, account lacks access */ type GetDomainsForbidden struct { Payload *sf_gate_models.Error } func (o *GetDomainsForbidden) Error() string { return fmt.Sprintf("[GET /domains][%d] getDomainsForbidden %+v", 403, o.Payload) } func (o *GetDomainsForbidden) GetPayload() *sf_gate_models.Error { return o.Payload } func (o *GetDomainsForbidden) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { o.Payload = new(sf_gate_models.Error) // response payload if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF { return err } return nil } // NewGetDomainsNotFound creates a GetDomainsNotFound with default headers values func NewGetDomainsNotFound() *GetDomainsNotFound { return &GetDomainsNotFound{} } /* GetDomainsNotFound describes a response with status code 404, with default header values. Resource was not found */ type GetDomainsNotFound struct { Payload *sf_gate_models.Error } func (o *GetDomainsNotFound) Error() string { return fmt.Sprintf("[GET /domains][%d] getDomainsNotFound %+v", 404, o.Payload) } func (o *GetDomainsNotFound) GetPayload() *sf_gate_models.Error { return o.Payload } func (o *GetDomainsNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { o.Payload = new(sf_gate_models.Error) // response payload if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF { return err } return nil } // NewGetDomainsUnprocessableEntity creates a GetDomainsUnprocessableEntity with default headers values func NewGetDomainsUnprocessableEntity() *GetDomainsUnprocessableEntity { return &GetDomainsUnprocessableEntity{} } /* GetDomainsUnprocessableEntity describes a response with status code 422, with default header values. Unprocessable Entity, likely a bad parameter */ type GetDomainsUnprocessableEntity struct { Payload *sf_gate_models.Error } func (o *GetDomainsUnprocessableEntity) Error() string { return fmt.Sprintf("[GET /domains][%d] getDomainsUnprocessableEntity %+v", 422, o.Payload) } func (o *GetDomainsUnprocessableEntity) GetPayload() *sf_gate_models.Error { return o.Payload } func (o *GetDomainsUnprocessableEntity) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { o.Payload = new(sf_gate_models.Error) // response payload if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF { return err } return nil } // NewGetDomainsInternalServerError creates a GetDomainsInternalServerError with default headers values func NewGetDomainsInternalServerError() *GetDomainsInternalServerError { return &GetDomainsInternalServerError{} } /* GetDomainsInternalServerError describes a response with status code 500, with default header values. Server Internal Error */ type GetDomainsInternalServerError struct { Payload *sf_gate_models.Error } func (o *GetDomainsInternalServerError) Error() string { return fmt.Sprintf("[GET /domains][%d] getDomainsInternalServerError %+v", 500, o.Payload) } func (o *GetDomainsInternalServerError) GetPayload() *sf_gate_models.Error { return o.Payload } func (o *GetDomainsInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error { o.Payload = new(sf_gate_models.Error) // response payload if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF { return err } return nil }