2022-07-25 17:44:17 +02:00
// Code generated by go-swagger; DO NOT EDIT.
package identity
// 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"
2022-07-26 21:16:02 +02:00
"github.com/openziti-test-kitchen/zrok/rest_model_zrok"
2022-07-25 17:44:17 +02:00
)
// CreateAccountReader is a Reader for the CreateAccount structure.
type CreateAccountReader struct {
formats strfmt . Registry
}
// ReadResponse reads a server response into the received o.
func ( o * CreateAccountReader ) ReadResponse ( response runtime . ClientResponse , consumer runtime . Consumer ) ( interface { } , error ) {
switch response . Code ( ) {
case 201 :
result := NewCreateAccountCreated ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return result , nil
2022-07-25 22:23:55 +02:00
case 400 :
result := NewCreateAccountBadRequest ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
case 500 :
result := NewCreateAccountInternalServerError ( )
if err := result . readResponse ( response , consumer , o . formats ) ; err != nil {
return nil , err
}
return nil , result
2022-07-25 17:44:17 +02:00
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 ( ) )
}
}
// NewCreateAccountCreated creates a CreateAccountCreated with default headers values
func NewCreateAccountCreated ( ) * CreateAccountCreated {
return & CreateAccountCreated { }
}
/ * CreateAccountCreated describes a response with status code 201 , with default header values .
account created
* /
type CreateAccountCreated struct {
2022-07-26 21:16:02 +02:00
Payload * rest_model_zrok . AccountResponse
2022-07-25 17:44:17 +02:00
}
func ( o * CreateAccountCreated ) Error ( ) string {
return fmt . Sprintf ( "[POST /account][%d] createAccountCreated %+v" , 201 , o . Payload )
}
2022-07-26 21:16:02 +02:00
func ( o * CreateAccountCreated ) GetPayload ( ) * rest_model_zrok . AccountResponse {
2022-07-25 17:44:17 +02:00
return o . Payload
}
func ( o * CreateAccountCreated ) readResponse ( response runtime . ClientResponse , consumer runtime . Consumer , formats strfmt . Registry ) error {
2022-07-26 21:16:02 +02:00
o . Payload = new ( rest_model_zrok . AccountResponse )
2022-07-25 17:44:17 +02:00
// response payload
if err := consumer . Consume ( response . Body ( ) , o . Payload ) ; err != nil && err != io . EOF {
return err
}
return nil
}
2022-07-25 22:23:55 +02:00
// NewCreateAccountBadRequest creates a CreateAccountBadRequest with default headers values
func NewCreateAccountBadRequest ( ) * CreateAccountBadRequest {
return & CreateAccountBadRequest { }
}
/ * CreateAccountBadRequest describes a response with status code 400 , with default header values .
account not created ( already exists )
* /
type CreateAccountBadRequest struct {
2022-07-27 19:38:35 +02:00
Payload rest_model_zrok . ErrorMessage
2022-07-25 22:23:55 +02:00
}
func ( o * CreateAccountBadRequest ) Error ( ) string {
2022-07-27 19:38:35 +02:00
return fmt . Sprintf ( "[POST /account][%d] createAccountBadRequest %+v" , 400 , o . Payload )
}
func ( o * CreateAccountBadRequest ) GetPayload ( ) rest_model_zrok . ErrorMessage {
return o . Payload
2022-07-25 22:23:55 +02:00
}
func ( o * CreateAccountBadRequest ) readResponse ( response runtime . ClientResponse , consumer runtime . Consumer , formats strfmt . Registry ) error {
2022-07-27 19:38:35 +02:00
// response payload
if err := consumer . Consume ( response . Body ( ) , & o . Payload ) ; err != nil && err != io . EOF {
return err
}
2022-07-25 22:23:55 +02:00
return nil
}
// NewCreateAccountInternalServerError creates a CreateAccountInternalServerError with default headers values
func NewCreateAccountInternalServerError ( ) * CreateAccountInternalServerError {
return & CreateAccountInternalServerError { }
}
/ * CreateAccountInternalServerError describes a response with status code 500 , with default header values .
internal server error
* /
type CreateAccountInternalServerError struct {
2022-07-27 19:38:35 +02:00
Payload rest_model_zrok . ErrorMessage
2022-07-25 22:23:55 +02:00
}
func ( o * CreateAccountInternalServerError ) Error ( ) string {
2022-07-27 19:38:35 +02:00
return fmt . Sprintf ( "[POST /account][%d] createAccountInternalServerError %+v" , 500 , o . Payload )
}
func ( o * CreateAccountInternalServerError ) GetPayload ( ) rest_model_zrok . ErrorMessage {
return o . Payload
2022-07-25 22:23:55 +02:00
}
func ( o * CreateAccountInternalServerError ) readResponse ( response runtime . ClientResponse , consumer runtime . Consumer , formats strfmt . Registry ) error {
2022-07-27 19:38:35 +02:00
// response payload
if err := consumer . Consume ( response . Body ( ) , & o . Payload ) ; err != nil && err != io . EOF {
return err
}
2022-07-25 22:23:55 +02:00
return nil
}