Files
ziti/rest_client_api_client/authentication/authenticate_mfa_responses.go
T
2022-06-08 14:04:13 -04:00

130 lines
3.9 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
//
// Copyright NetFoundry Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// __ __ _
// \ \ / / (_)
// \ \ /\ / /_ _ _ __ _ __ _ _ __ __ _
// \ \/ \/ / _` | '__| '_ \| | '_ \ / _` |
// \ /\ / (_| | | | | | | | | | | (_| | : This file is generated, do not edit it.
// \/ \/ \__,_|_| |_| |_|_|_| |_|\__, |
// __/ |
// |___/
package authentication
// 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"
"github.com/openziti/edge/rest_model"
)
// AuthenticateMfaReader is a Reader for the AuthenticateMfa structure.
type AuthenticateMfaReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *AuthenticateMfaReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 200:
result := NewAuthenticateMfaOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
case 401:
result := NewAuthenticateMfaUnauthorized()
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())
}
}
// NewAuthenticateMfaOK creates a AuthenticateMfaOK with default headers values
func NewAuthenticateMfaOK() *AuthenticateMfaOK {
return &AuthenticateMfaOK{}
}
/* AuthenticateMfaOK describes a response with status code 200, with default header values.
Base empty response
*/
type AuthenticateMfaOK struct {
Payload *rest_model.Empty
}
func (o *AuthenticateMfaOK) Error() string {
return fmt.Sprintf("[POST /authenticate/mfa][%d] authenticateMfaOK %+v", 200, o.Payload)
}
func (o *AuthenticateMfaOK) GetPayload() *rest_model.Empty {
return o.Payload
}
func (o *AuthenticateMfaOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(rest_model.Empty)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewAuthenticateMfaUnauthorized creates a AuthenticateMfaUnauthorized with default headers values
func NewAuthenticateMfaUnauthorized() *AuthenticateMfaUnauthorized {
return &AuthenticateMfaUnauthorized{}
}
/* AuthenticateMfaUnauthorized describes a response with status code 401, with default header values.
Base empty response
*/
type AuthenticateMfaUnauthorized struct {
Payload *rest_model.Empty
}
func (o *AuthenticateMfaUnauthorized) Error() string {
return fmt.Sprintf("[POST /authenticate/mfa][%d] authenticateMfaUnauthorized %+v", 401, o.Payload)
}
func (o *AuthenticateMfaUnauthorized) GetPayload() *rest_model.Empty {
return o.Payload
}
func (o *AuthenticateMfaUnauthorized) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(rest_model.Empty)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}