zrok/rest_model_zrok/environment.go

69 lines
1.4 KiB
Go
Raw Normal View History

// 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-08-03 17:54:11 +02:00
// Environment environment
//
2022-08-03 17:54:11 +02:00
// swagger:model environment
type Environment struct {
// active
Active bool `json:"active,omitempty"`
2022-08-03 19:48:17 +02:00
// address
Address string `json:"address,omitempty"`
// created at
CreatedAt int64 `json:"createdAt,omitempty"`
2022-08-03 19:48:17 +02:00
// description
Description string `json:"description,omitempty"`
// host
Host string `json:"host,omitempty"`
// updated at
UpdatedAt int64 `json:"updatedAt,omitempty"`
2022-10-19 18:35:29 +02:00
// z Id
ZID string `json:"zId,omitempty"`
}
2022-08-03 17:54:11 +02:00
// Validate validates this environment
func (m *Environment) Validate(formats strfmt.Registry) error {
return nil
}
2022-08-03 17:54:11 +02:00
// ContextValidate validates this environment based on context it is used
func (m *Environment) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
2022-08-03 17:54:11 +02:00
func (m *Environment) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
2022-08-03 17:54:11 +02:00
func (m *Environment) UnmarshalBinary(b []byte) error {
var res Environment
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}