zrok/rest_model_zrok/unshare_request.go

57 lines
1.2 KiB
Go
Raw Normal View History

2022-07-27 17:35:28 +02: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"
)
// UnshareRequest unshare request
2022-07-27 17:35:28 +02:00
//
// swagger:model unshareRequest
type UnshareRequest struct {
2022-07-27 17:35:28 +02:00
// env z Id
EnvZID string `json:"envZId,omitempty"`
2022-08-03 20:58:11 +02:00
2022-11-30 19:45:57 +01:00
// reserved
Reserved bool `json:"reserved,omitempty"`
// shr token
ShrToken string `json:"shrToken,omitempty"`
2022-07-27 17:35:28 +02:00
}
// Validate validates this unshare request
func (m *UnshareRequest) Validate(formats strfmt.Registry) error {
2022-07-27 17:35:28 +02:00
return nil
}
// ContextValidate validates this unshare request based on context it is used
func (m *UnshareRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
2022-07-27 17:35:28 +02:00
return nil
}
// MarshalBinary interface implementation
func (m *UnshareRequest) MarshalBinary() ([]byte, error) {
2022-07-27 17:35:28 +02:00
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *UnshareRequest) UnmarshalBinary(b []byte) error {
var res UnshareRequest
2022-07-27 17:35:28 +02:00
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}