Rename bots-common to common
to make it match the name it is imported as
This commit is contained in:
@@ -0,0 +1,106 @@
|
||||
// Code generated by go-swagger; DO NOT EDIT.
|
||||
|
||||
package admin
|
||||
|
||||
// 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"
|
||||
)
|
||||
|
||||
// AdminCreateHookReader is a Reader for the AdminCreateHook structure.
|
||||
type AdminCreateHookReader struct {
|
||||
formats strfmt.Registry
|
||||
}
|
||||
|
||||
// ReadResponse reads a server response into the received o.
|
||||
func (o *AdminCreateHookReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
|
||||
switch response.Code() {
|
||||
case 201:
|
||||
result := NewAdminCreateHookCreated()
|
||||
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return result, nil
|
||||
default:
|
||||
return nil, runtime.NewAPIError("[POST /admin/hooks] adminCreateHook", response, response.Code())
|
||||
}
|
||||
}
|
||||
|
||||
// NewAdminCreateHookCreated creates a AdminCreateHookCreated with default headers values
|
||||
func NewAdminCreateHookCreated() *AdminCreateHookCreated {
|
||||
return &AdminCreateHookCreated{}
|
||||
}
|
||||
|
||||
/*
|
||||
AdminCreateHookCreated describes a response with status code 201, with default header values.
|
||||
|
||||
Hook
|
||||
*/
|
||||
type AdminCreateHookCreated struct {
|
||||
Payload *models.Hook
|
||||
}
|
||||
|
||||
// IsSuccess returns true when this admin create hook created response has a 2xx status code
|
||||
func (o *AdminCreateHookCreated) IsSuccess() bool {
|
||||
return true
|
||||
}
|
||||
|
||||
// IsRedirect returns true when this admin create hook created response has a 3xx status code
|
||||
func (o *AdminCreateHookCreated) IsRedirect() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
// IsClientError returns true when this admin create hook created response has a 4xx status code
|
||||
func (o *AdminCreateHookCreated) IsClientError() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
// IsServerError returns true when this admin create hook created response has a 5xx status code
|
||||
func (o *AdminCreateHookCreated) IsServerError() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
// IsCode returns true when this admin create hook created response a status code equal to that given
|
||||
func (o *AdminCreateHookCreated) IsCode(code int) bool {
|
||||
return code == 201
|
||||
}
|
||||
|
||||
// Code gets the status code for the admin create hook created response
|
||||
func (o *AdminCreateHookCreated) Code() int {
|
||||
return 201
|
||||
}
|
||||
|
||||
func (o *AdminCreateHookCreated) Error() string {
|
||||
payload, _ := json.Marshal(o.Payload)
|
||||
return fmt.Sprintf("[POST /admin/hooks][%d] adminCreateHookCreated %s", 201, payload)
|
||||
}
|
||||
|
||||
func (o *AdminCreateHookCreated) String() string {
|
||||
payload, _ := json.Marshal(o.Payload)
|
||||
return fmt.Sprintf("[POST /admin/hooks][%d] adminCreateHookCreated %s", 201, payload)
|
||||
}
|
||||
|
||||
func (o *AdminCreateHookCreated) GetPayload() *models.Hook {
|
||||
return o.Payload
|
||||
}
|
||||
|
||||
func (o *AdminCreateHookCreated) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
||||
|
||||
o.Payload = new(models.Hook)
|
||||
|
||||
// response payload
|
||||
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
Reference in New Issue
Block a user