167 lines
5.2 KiB
Go
167 lines
5.2 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
package miscellaneous
|
|
|
|
// This file was generated by the swagger tool.
|
|
// Editing this file might prove futile when you re-run the swagger generate command
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
|
|
"github.com/go-openapi/runtime"
|
|
"github.com/go-openapi/strfmt"
|
|
|
|
"src.opensuse.org/autogits/common/gitea-generated/models"
|
|
)
|
|
|
|
// GetLabelTemplateInfoReader is a Reader for the GetLabelTemplateInfo structure.
|
|
type GetLabelTemplateInfoReader struct {
|
|
formats strfmt.Registry
|
|
}
|
|
|
|
// ReadResponse reads a server response into the received o.
|
|
func (o *GetLabelTemplateInfoReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
|
|
switch response.Code() {
|
|
case 200:
|
|
result := NewGetLabelTemplateInfoOK()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return result, nil
|
|
case 404:
|
|
result := NewGetLabelTemplateInfoNotFound()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, result
|
|
default:
|
|
return nil, runtime.NewAPIError("[GET /label/templates/{name}] getLabelTemplateInfo", response, response.Code())
|
|
}
|
|
}
|
|
|
|
// NewGetLabelTemplateInfoOK creates a GetLabelTemplateInfoOK with default headers values
|
|
func NewGetLabelTemplateInfoOK() *GetLabelTemplateInfoOK {
|
|
return &GetLabelTemplateInfoOK{}
|
|
}
|
|
|
|
/*
|
|
GetLabelTemplateInfoOK describes a response with status code 200, with default header values.
|
|
|
|
LabelTemplateInfo
|
|
*/
|
|
type GetLabelTemplateInfoOK struct {
|
|
Payload []*models.LabelTemplate
|
|
}
|
|
|
|
// IsSuccess returns true when this get label template info o k response has a 2xx status code
|
|
func (o *GetLabelTemplateInfoOK) IsSuccess() bool {
|
|
return true
|
|
}
|
|
|
|
// IsRedirect returns true when this get label template info o k response has a 3xx status code
|
|
func (o *GetLabelTemplateInfoOK) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get label template info o k response has a 4xx status code
|
|
func (o *GetLabelTemplateInfoOK) IsClientError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsServerError returns true when this get label template info o k response has a 5xx status code
|
|
func (o *GetLabelTemplateInfoOK) IsServerError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsCode returns true when this get label template info o k response a status code equal to that given
|
|
func (o *GetLabelTemplateInfoOK) IsCode(code int) bool {
|
|
return code == 200
|
|
}
|
|
|
|
// Code gets the status code for the get label template info o k response
|
|
func (o *GetLabelTemplateInfoOK) Code() int {
|
|
return 200
|
|
}
|
|
|
|
func (o *GetLabelTemplateInfoOK) Error() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[GET /label/templates/{name}][%d] getLabelTemplateInfoOK %s", 200, payload)
|
|
}
|
|
|
|
func (o *GetLabelTemplateInfoOK) String() string {
|
|
payload, _ := json.Marshal(o.Payload)
|
|
return fmt.Sprintf("[GET /label/templates/{name}][%d] getLabelTemplateInfoOK %s", 200, payload)
|
|
}
|
|
|
|
func (o *GetLabelTemplateInfoOK) GetPayload() []*models.LabelTemplate {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *GetLabelTemplateInfoOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), &o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewGetLabelTemplateInfoNotFound creates a GetLabelTemplateInfoNotFound with default headers values
|
|
func NewGetLabelTemplateInfoNotFound() *GetLabelTemplateInfoNotFound {
|
|
return &GetLabelTemplateInfoNotFound{}
|
|
}
|
|
|
|
/*
|
|
GetLabelTemplateInfoNotFound describes a response with status code 404, with default header values.
|
|
|
|
APINotFound is a not found empty response
|
|
*/
|
|
type GetLabelTemplateInfoNotFound struct {
|
|
}
|
|
|
|
// IsSuccess returns true when this get label template info not found response has a 2xx status code
|
|
func (o *GetLabelTemplateInfoNotFound) IsSuccess() bool {
|
|
return false
|
|
}
|
|
|
|
// IsRedirect returns true when this get label template info not found response has a 3xx status code
|
|
func (o *GetLabelTemplateInfoNotFound) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this get label template info not found response has a 4xx status code
|
|
func (o *GetLabelTemplateInfoNotFound) IsClientError() bool {
|
|
return true
|
|
}
|
|
|
|
// IsServerError returns true when this get label template info not found response has a 5xx status code
|
|
func (o *GetLabelTemplateInfoNotFound) IsServerError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsCode returns true when this get label template info not found response a status code equal to that given
|
|
func (o *GetLabelTemplateInfoNotFound) IsCode(code int) bool {
|
|
return code == 404
|
|
}
|
|
|
|
// Code gets the status code for the get label template info not found response
|
|
func (o *GetLabelTemplateInfoNotFound) Code() int {
|
|
return 404
|
|
}
|
|
|
|
func (o *GetLabelTemplateInfoNotFound) Error() string {
|
|
return fmt.Sprintf("[GET /label/templates/{name}][%d] getLabelTemplateInfoNotFound", 404)
|
|
}
|
|
|
|
func (o *GetLabelTemplateInfoNotFound) String() string {
|
|
return fmt.Sprintf("[GET /label/templates/{name}][%d] getLabelTemplateInfoNotFound", 404)
|
|
}
|
|
|
|
func (o *GetLabelTemplateInfoNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
return nil
|
|
}
|