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"
|
|
|
|
)
|
|
|
|
|
2022-11-18 21:36:55 +01:00
|
|
|
// UnshareRequest unshare request
|
2022-07-27 17:35:28 +02:00
|
|
|
//
|
2022-11-18 21:36:55 +01:00
|
|
|
// swagger:model unshareRequest
|
|
|
|
type UnshareRequest struct {
|
2022-07-27 17:35:28 +02:00
|
|
|
|
2022-11-30 18:46:19 +01: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"`
|
|
|
|
|
2023-01-04 19:43:37 +01:00
|
|
|
// shr token
|
|
|
|
ShrToken string `json:"shrToken,omitempty"`
|
2022-07-27 17:35:28 +02:00
|
|
|
}
|
|
|
|
|
2022-11-18 21:36:55 +01:00
|
|
|
// Validate validates this unshare request
|
|
|
|
func (m *UnshareRequest) Validate(formats strfmt.Registry) error {
|
2022-07-27 17:35:28 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-11-18 21:36:55 +01:00
|
|
|
// 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
|
2022-11-18 21:36:55 +01:00
|
|
|
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
|
2022-11-18 21:36:55 +01:00
|
|
|
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
|
|
|
|
}
|