zrok/rest_model_zrok/unaccess_request.go

57 lines
1.3 KiB
Go
Raw Permalink Normal View History

2022-11-23 18:12:11 +01:00
// Code generated by go-swagger; DO NOT EDIT.
package rest_model_zrok
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"context"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
)
// UnaccessRequest unaccess request
//
// swagger:model unaccessRequest
type UnaccessRequest struct {
// env z Id
EnvZID string `json:"envZId,omitempty"`
// frontend token
FrontendToken string `json:"frontendToken,omitempty"`
2022-11-23 18:12:11 +01:00
// shr token
ShrToken string `json:"shrToken,omitempty"`
2022-11-23 18:12:11 +01:00
}
// Validate validates this unaccess request
func (m *UnaccessRequest) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this unaccess request based on context it is used
func (m *UnaccessRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *UnaccessRequest) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *UnaccessRequest) UnmarshalBinary(b []byte) error {
var res UnaccessRequest
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}