You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.2 KiB
54 lines
1.2 KiB
3 years ago
|
// Code generated by go-swagger; DO NOT EDIT.
|
||
|
|
||
|
package models
|
||
|
|
||
|
// This file was generated by the swagger tool.
|
||
|
// Editing this file might prove futile when you re-run the swagger generate command
|
||
|
|
||
|
import (
|
||
|
"github.com/go-openapi/strfmt"
|
||
|
"github.com/go-openapi/swag"
|
||
|
"gitlab.com/cyclops-utilities/datamodels"
|
||
|
)
|
||
|
|
||
|
// MinimalState minimal state
|
||
|
//
|
||
|
// swagger:model MinimalState
|
||
|
type MinimalState struct {
|
||
|
|
||
|
// account
|
||
|
Account string `json:"Account,omitempty"`
|
||
|
|
||
|
// meta data
|
||
|
MetaData datamodels.JSONdb `json:"MetaData,omitempty" gorm:"type:jsonb"`
|
||
|
|
||
|
// resource Id
|
||
|
ResourceID string `json:"ResourceId,omitempty"`
|
||
|
|
||
|
// resource name
|
||
|
ResourceName string `json:"ResourceName,omitempty"`
|
||
|
}
|
||
|
|
||
|
// Validate validates this minimal state
|
||
|
func (m *MinimalState) Validate(formats strfmt.Registry) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// MarshalBinary interface implementation
|
||
|
func (m *MinimalState) MarshalBinary() ([]byte, error) {
|
||
|
if m == nil {
|
||
|
return nil, nil
|
||
|
}
|
||
|
return swag.WriteJSON(m)
|
||
|
}
|
||
|
|
||
|
// UnmarshalBinary interface implementation
|
||
|
func (m *MinimalState) UnmarshalBinary(b []byte) error {
|
||
|
var res MinimalState
|
||
|
if err := swag.ReadJSON(b, &res); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
*m = res
|
||
|
return nil
|
||
|
}
|