478 lines
14 KiB
Go
478 lines
14 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
// (c) 2012-2023 by Vernon Keenan
|
|
// All rights reserved worldwide.
|
|
// Proprietary product; unlicensed use is not allowed
|
|
|
|
package tracks
|
|
|
|
// 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/work/lib/api/sfgate/sfgate_models"
|
|
)
|
|
|
|
// GetTracksReader is a Reader for the GetTracks structure.
|
|
type GetTracksReader struct {
|
|
formats strfmt.Registry
|
|
}
|
|
|
|
// ReadResponse reads a server response into the received o.
|
|
func (o *GetTracksReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
|
|
switch response.Code() {
|
|
case 200:
|
|
result := NewGetTracksOK()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return result, nil
|
|
case 401:
|
|
result := NewGetTracksUnauthorized()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
case 403:
|
|
result := NewGetTracksForbidden()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
case 404:
|
|
result := NewGetTracksNotFound()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
case 422:
|
|
result := NewGetTracksUnprocessableEntity()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
case 500:
|
|
result := NewGetTracksInternalServerError()
|
|
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())
|
|
}
|
|
}
|
|
|
|
// NewGetTracksOK creates a GetTracksOK with default headers values
|
|
func NewGetTracksOK() *GetTracksOK {
|
|
return &GetTracksOK{}
|
|
}
|
|
|
|
/*
|
|
GetTracksOK describes a response with status code 200, with default header values.
|
|
|
|
Track Response Object
|
|
*/
|
|
type GetTracksOK struct {
|
|
Payload *sfgate_models.TrackResponse
|
|
}
|
|
|
|
// IsSuccess returns true when this get tracks o k response has a 2xx status code
|
|
func (o *GetTracksOK) IsSuccess() bool {
|
|
return true
|
|
}
|
|
|
|
// IsRedirect returns true when this get tracks o k response has a 3xx status code
|
|
func (o *GetTracksOK) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get tracks o k response has a 4xx status code
|
|
func (o *GetTracksOK) IsClientError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsServerError returns true when this get tracks o k response has a 5xx status code
|
|
func (o *GetTracksOK) IsServerError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsCode returns true when this get tracks o k response a status code equal to that given
|
|
func (o *GetTracksOK) IsCode(code int) bool {
|
|
return code == 200
|
|
}
|
|
|
|
// Code gets the status code for the get tracks o k response
|
|
func (o *GetTracksOK) Code() int {
|
|
return 200
|
|
}
|
|
|
|
func (o *GetTracksOK) Error() string {
|
|
return fmt.Sprintf("[GET /tracks][%d] getTracksOK %+v", 200, o.Payload)
|
|
}
|
|
|
|
func (o *GetTracksOK) String() string {
|
|
return fmt.Sprintf("[GET /tracks][%d] getTracksOK %+v", 200, o.Payload)
|
|
}
|
|
|
|
func (o *GetTracksOK) GetPayload() *sfgate_models.TrackResponse {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetTracksOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(sfgate_models.TrackResponse)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetTracksUnauthorized creates a GetTracksUnauthorized with default headers values
|
|
func NewGetTracksUnauthorized() *GetTracksUnauthorized {
|
|
return &GetTracksUnauthorized{}
|
|
}
|
|
|
|
/*
|
|
GetTracksUnauthorized describes a response with status code 401, with default header values.
|
|
|
|
Access unauthorized, invalid API-KEY was used
|
|
*/
|
|
type GetTracksUnauthorized struct {
|
|
Payload *sfgate_models.Error
|
|
}
|
|
|
|
// IsSuccess returns true when this get tracks unauthorized response has a 2xx status code
|
|
func (o *GetTracksUnauthorized) IsSuccess() bool {
|
|
return false
|
|
}
|
|
|
|
// IsRedirect returns true when this get tracks unauthorized response has a 3xx status code
|
|
func (o *GetTracksUnauthorized) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get tracks unauthorized response has a 4xx status code
|
|
func (o *GetTracksUnauthorized) IsClientError() bool {
|
|
return true
|
|
}
|
|
|
|
// IsServerError returns true when this get tracks unauthorized response has a 5xx status code
|
|
func (o *GetTracksUnauthorized) IsServerError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsCode returns true when this get tracks unauthorized response a status code equal to that given
|
|
func (o *GetTracksUnauthorized) IsCode(code int) bool {
|
|
return code == 401
|
|
}
|
|
|
|
// Code gets the status code for the get tracks unauthorized response
|
|
func (o *GetTracksUnauthorized) Code() int {
|
|
return 401
|
|
}
|
|
|
|
func (o *GetTracksUnauthorized) Error() string {
|
|
return fmt.Sprintf("[GET /tracks][%d] getTracksUnauthorized %+v", 401, o.Payload)
|
|
}
|
|
|
|
func (o *GetTracksUnauthorized) String() string {
|
|
return fmt.Sprintf("[GET /tracks][%d] getTracksUnauthorized %+v", 401, o.Payload)
|
|
}
|
|
|
|
func (o *GetTracksUnauthorized) GetPayload() *sfgate_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetTracksUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(sfgate_models.Error)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetTracksForbidden creates a GetTracksForbidden with default headers values
|
|
func NewGetTracksForbidden() *GetTracksForbidden {
|
|
return &GetTracksForbidden{}
|
|
}
|
|
|
|
/*
|
|
GetTracksForbidden describes a response with status code 403, with default header values.
|
|
|
|
Access forbidden, account lacks access
|
|
*/
|
|
type GetTracksForbidden struct {
|
|
Payload *sfgate_models.Error
|
|
}
|
|
|
|
// IsSuccess returns true when this get tracks forbidden response has a 2xx status code
|
|
func (o *GetTracksForbidden) IsSuccess() bool {
|
|
return false
|
|
}
|
|
|
|
// IsRedirect returns true when this get tracks forbidden response has a 3xx status code
|
|
func (o *GetTracksForbidden) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get tracks forbidden response has a 4xx status code
|
|
func (o *GetTracksForbidden) IsClientError() bool {
|
|
return true
|
|
}
|
|
|
|
// IsServerError returns true when this get tracks forbidden response has a 5xx status code
|
|
func (o *GetTracksForbidden) IsServerError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsCode returns true when this get tracks forbidden response a status code equal to that given
|
|
func (o *GetTracksForbidden) IsCode(code int) bool {
|
|
return code == 403
|
|
}
|
|
|
|
// Code gets the status code for the get tracks forbidden response
|
|
func (o *GetTracksForbidden) Code() int {
|
|
return 403
|
|
}
|
|
|
|
func (o *GetTracksForbidden) Error() string {
|
|
return fmt.Sprintf("[GET /tracks][%d] getTracksForbidden %+v", 403, o.Payload)
|
|
}
|
|
|
|
func (o *GetTracksForbidden) String() string {
|
|
return fmt.Sprintf("[GET /tracks][%d] getTracksForbidden %+v", 403, o.Payload)
|
|
}
|
|
|
|
func (o *GetTracksForbidden) GetPayload() *sfgate_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetTracksForbidden) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(sfgate_models.Error)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetTracksNotFound creates a GetTracksNotFound with default headers values
|
|
func NewGetTracksNotFound() *GetTracksNotFound {
|
|
return &GetTracksNotFound{}
|
|
}
|
|
|
|
/*
|
|
GetTracksNotFound describes a response with status code 404, with default header values.
|
|
|
|
Resource was not found
|
|
*/
|
|
type GetTracksNotFound struct {
|
|
Payload *sfgate_models.Error
|
|
}
|
|
|
|
// IsSuccess returns true when this get tracks not found response has a 2xx status code
|
|
func (o *GetTracksNotFound) IsSuccess() bool {
|
|
return false
|
|
}
|
|
|
|
// IsRedirect returns true when this get tracks not found response has a 3xx status code
|
|
func (o *GetTracksNotFound) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get tracks not found response has a 4xx status code
|
|
func (o *GetTracksNotFound) IsClientError() bool {
|
|
return true
|
|
}
|
|
|
|
// IsServerError returns true when this get tracks not found response has a 5xx status code
|
|
func (o *GetTracksNotFound) IsServerError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsCode returns true when this get tracks not found response a status code equal to that given
|
|
func (o *GetTracksNotFound) IsCode(code int) bool {
|
|
return code == 404
|
|
}
|
|
|
|
// Code gets the status code for the get tracks not found response
|
|
func (o *GetTracksNotFound) Code() int {
|
|
return 404
|
|
}
|
|
|
|
func (o *GetTracksNotFound) Error() string {
|
|
return fmt.Sprintf("[GET /tracks][%d] getTracksNotFound %+v", 404, o.Payload)
|
|
}
|
|
|
|
func (o *GetTracksNotFound) String() string {
|
|
return fmt.Sprintf("[GET /tracks][%d] getTracksNotFound %+v", 404, o.Payload)
|
|
}
|
|
|
|
func (o *GetTracksNotFound) GetPayload() *sfgate_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetTracksNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(sfgate_models.Error)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetTracksUnprocessableEntity creates a GetTracksUnprocessableEntity with default headers values
|
|
func NewGetTracksUnprocessableEntity() *GetTracksUnprocessableEntity {
|
|
return &GetTracksUnprocessableEntity{}
|
|
}
|
|
|
|
/*
|
|
GetTracksUnprocessableEntity describes a response with status code 422, with default header values.
|
|
|
|
Unprocessable Entity, likely a bad parameter
|
|
*/
|
|
type GetTracksUnprocessableEntity struct {
|
|
Payload *sfgate_models.Error
|
|
}
|
|
|
|
// IsSuccess returns true when this get tracks unprocessable entity response has a 2xx status code
|
|
func (o *GetTracksUnprocessableEntity) IsSuccess() bool {
|
|
return false
|
|
}
|
|
|
|
// IsRedirect returns true when this get tracks unprocessable entity response has a 3xx status code
|
|
func (o *GetTracksUnprocessableEntity) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get tracks unprocessable entity response has a 4xx status code
|
|
func (o *GetTracksUnprocessableEntity) IsClientError() bool {
|
|
return true
|
|
}
|
|
|
|
// IsServerError returns true when this get tracks unprocessable entity response has a 5xx status code
|
|
func (o *GetTracksUnprocessableEntity) IsServerError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsCode returns true when this get tracks unprocessable entity response a status code equal to that given
|
|
func (o *GetTracksUnprocessableEntity) IsCode(code int) bool {
|
|
return code == 422
|
|
}
|
|
|
|
// Code gets the status code for the get tracks unprocessable entity response
|
|
func (o *GetTracksUnprocessableEntity) Code() int {
|
|
return 422
|
|
}
|
|
|
|
func (o *GetTracksUnprocessableEntity) Error() string {
|
|
return fmt.Sprintf("[GET /tracks][%d] getTracksUnprocessableEntity %+v", 422, o.Payload)
|
|
}
|
|
|
|
func (o *GetTracksUnprocessableEntity) String() string {
|
|
return fmt.Sprintf("[GET /tracks][%d] getTracksUnprocessableEntity %+v", 422, o.Payload)
|
|
}
|
|
|
|
func (o *GetTracksUnprocessableEntity) GetPayload() *sfgate_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetTracksUnprocessableEntity) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(sfgate_models.Error)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetTracksInternalServerError creates a GetTracksInternalServerError with default headers values
|
|
func NewGetTracksInternalServerError() *GetTracksInternalServerError {
|
|
return &GetTracksInternalServerError{}
|
|
}
|
|
|
|
/*
|
|
GetTracksInternalServerError describes a response with status code 500, with default header values.
|
|
|
|
Server Internal Error
|
|
*/
|
|
type GetTracksInternalServerError struct {
|
|
Payload *sfgate_models.Error
|
|
}
|
|
|
|
// IsSuccess returns true when this get tracks internal server error response has a 2xx status code
|
|
func (o *GetTracksInternalServerError) IsSuccess() bool {
|
|
return false
|
|
}
|
|
|
|
// IsRedirect returns true when this get tracks internal server error response has a 3xx status code
|
|
func (o *GetTracksInternalServerError) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get tracks internal server error response has a 4xx status code
|
|
func (o *GetTracksInternalServerError) IsClientError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsServerError returns true when this get tracks internal server error response has a 5xx status code
|
|
func (o *GetTracksInternalServerError) IsServerError() bool {
|
|
return true
|
|
}
|
|
|
|
// IsCode returns true when this get tracks internal server error response a status code equal to that given
|
|
func (o *GetTracksInternalServerError) IsCode(code int) bool {
|
|
return code == 500
|
|
}
|
|
|
|
// Code gets the status code for the get tracks internal server error response
|
|
func (o *GetTracksInternalServerError) Code() int {
|
|
return 500
|
|
}
|
|
|
|
func (o *GetTracksInternalServerError) Error() string {
|
|
return fmt.Sprintf("[GET /tracks][%d] getTracksInternalServerError %+v", 500, o.Payload)
|
|
}
|
|
|
|
func (o *GetTracksInternalServerError) String() string {
|
|
return fmt.Sprintf("[GET /tracks][%d] getTracksInternalServerError %+v", 500, o.Payload)
|
|
}
|
|
|
|
func (o *GetTracksInternalServerError) GetPayload() *sfgate_models.Error {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetTracksInternalServerError) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
o.Payload = new(sfgate_models.Error)
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|