zrok/rest_model_zrok/frontend.go

63 lines
1.3 KiB
Go

// 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"
)
// Frontend frontend
//
// swagger:model frontend
type Frontend struct {
// created at
CreatedAt int64 `json:"createdAt,omitempty"`
// id
ID int64 `json:"id,omitempty"`
// shr token
ShrToken string `json:"shrToken,omitempty"`
// updated at
UpdatedAt int64 `json:"updatedAt,omitempty"`
// z Id
ZID string `json:"zId,omitempty"`
}
// Validate validates this frontend
func (m *Frontend) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this frontend based on context it is used
func (m *Frontend) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *Frontend) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Frontend) UnmarshalBinary(b []byte) error {
var res Frontend
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}