autogits/bots-common/gitea-generated/client/repository/repo_update_avatar_responses.go

151 lines
4.7 KiB
Go
Raw Normal View History

2024-07-07 21:08:41 +02:00
// Code generated by go-swagger; DO NOT EDIT.
package repository
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"fmt"
"github.com/go-openapi/runtime"
"github.com/go-openapi/strfmt"
)
// RepoUpdateAvatarReader is a Reader for the RepoUpdateAvatar structure.
type RepoUpdateAvatarReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *RepoUpdateAvatarReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 204:
result := NewRepoUpdateAvatarNoContent()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 404:
result := NewRepoUpdateAvatarNotFound()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return nil, result
default:
return nil, runtime.NewAPIError("[POST /repos/{owner}/{repo}/avatar] repoUpdateAvatar", response, response.Code())
}
}
// NewRepoUpdateAvatarNoContent creates a RepoUpdateAvatarNoContent with default headers values
func NewRepoUpdateAvatarNoContent() *RepoUpdateAvatarNoContent {
return &RepoUpdateAvatarNoContent{}
}
/*
RepoUpdateAvatarNoContent describes a response with status code 204, with default header values.
APIEmpty is an empty response
*/
type RepoUpdateAvatarNoContent struct {
}
// IsSuccess returns true when this repo update avatar no content response has a 2xx status code
func (o *RepoUpdateAvatarNoContent) IsSuccess() bool {
return true
}
// IsRedirect returns true when this repo update avatar no content response has a 3xx status code
func (o *RepoUpdateAvatarNoContent) IsRedirect() bool {
return false
}
// IsClientError returns true when this repo update avatar no content response has a 4xx status code
func (o *RepoUpdateAvatarNoContent) IsClientError() bool {
return false
}
// IsServerError returns true when this repo update avatar no content response has a 5xx status code
func (o *RepoUpdateAvatarNoContent) IsServerError() bool {
return false
}
// IsCode returns true when this repo update avatar no content response a status code equal to that given
func (o *RepoUpdateAvatarNoContent) IsCode(code int) bool {
return code == 204
}
// Code gets the status code for the repo update avatar no content response
func (o *RepoUpdateAvatarNoContent) Code() int {
return 204
}
func (o *RepoUpdateAvatarNoContent) Error() string {
return fmt.Sprintf("[POST /repos/{owner}/{repo}/avatar][%d] repoUpdateAvatarNoContent", 204)
}
func (o *RepoUpdateAvatarNoContent) String() string {
return fmt.Sprintf("[POST /repos/{owner}/{repo}/avatar][%d] repoUpdateAvatarNoContent", 204)
}
func (o *RepoUpdateAvatarNoContent) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
return nil
}
// NewRepoUpdateAvatarNotFound creates a RepoUpdateAvatarNotFound with default headers values
func NewRepoUpdateAvatarNotFound() *RepoUpdateAvatarNotFound {
return &RepoUpdateAvatarNotFound{}
}
/*
RepoUpdateAvatarNotFound describes a response with status code 404, with default header values.
APINotFound is a not found empty response
*/
type RepoUpdateAvatarNotFound struct {
}
// IsSuccess returns true when this repo update avatar not found response has a 2xx status code
func (o *RepoUpdateAvatarNotFound) IsSuccess() bool {
return false
}
// IsRedirect returns true when this repo update avatar not found response has a 3xx status code
func (o *RepoUpdateAvatarNotFound) IsRedirect() bool {
return false
}
// IsClientError returns true when this repo update avatar not found response has a 4xx status code
func (o *RepoUpdateAvatarNotFound) IsClientError() bool {
return true
}
// IsServerError returns true when this repo update avatar not found response has a 5xx status code
func (o *RepoUpdateAvatarNotFound) IsServerError() bool {
return false
}
// IsCode returns true when this repo update avatar not found response a status code equal to that given
func (o *RepoUpdateAvatarNotFound) IsCode(code int) bool {
return code == 404
}
// Code gets the status code for the repo update avatar not found response
func (o *RepoUpdateAvatarNotFound) Code() int {
return 404
}
func (o *RepoUpdateAvatarNotFound) Error() string {
return fmt.Sprintf("[POST /repos/{owner}/{repo}/avatar][%d] repoUpdateAvatarNotFound", 404)
}
func (o *RepoUpdateAvatarNotFound) String() string {
return fmt.Sprintf("[POST /repos/{owner}/{repo}/avatar][%d] repoUpdateAvatarNotFound", 404)
}
func (o *RepoUpdateAvatarNotFound) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
return nil
}