[#1] Add basic structure and operations

Signed-off-by: Denis Kirillov <denis@nspcc.ru>
This commit is contained in:
Denis Kirillov 2022-04-11 12:35:06 +03:00 committed by Alex Vanin
parent eb642eae89
commit 9f752cd756
65 changed files with 11534 additions and 0 deletions

53
gen/models/attribute.go Normal file
View file

@ -0,0 +1,53 @@
// 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 (
"context"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
)
// Attribute attribute
//
// swagger:model Attribute
type Attribute struct {
// key
Key string `json:"key,omitempty"`
// value
Value string `json:"value,omitempty"`
}
// Validate validates this attribute
func (m *Attribute) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this attribute based on context it is used
func (m *Attribute) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *Attribute) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Attribute) UnmarshalBinary(b []byte) error {
var res Attribute
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}