diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-10 18:55:02 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-10 18:55:02 -0700 |
commit | e6fedd421bf7644e969072eff9f375ecb58b25e2 (patch) | |
tree | bfb0ef710af7a0d6d98b4a75f5265776d69e76d1 /golang/gen/models/editgroup.go | |
parent | c6422b49b8b946386ca1068ec6887bbf07a8b166 (diff) | |
download | fatcat-e6fedd421bf7644e969072eff9f375ecb58b25e2.tar.gz fatcat-e6fedd421bf7644e969072eff9f375ecb58b25e2.zip |
bunch more API endpoints
Diffstat (limited to 'golang/gen/models/editgroup.go')
-rw-r--r-- | golang/gen/models/editgroup.go | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/golang/gen/models/editgroup.go b/golang/gen/models/editgroup.go new file mode 100644 index 00000000..67be219c --- /dev/null +++ b/golang/gen/models/editgroup.go @@ -0,0 +1,81 @@ +// 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 ( + strfmt "github.com/go-openapi/strfmt" + + "github.com/go-openapi/errors" + "github.com/go-openapi/swag" + "github.com/go-openapi/validate" +) + +// Editgroup editgroup +// swagger:model editgroup +type Editgroup struct { + + // editor id + // Required: true + EditorID *int64 `json:"editor_id"` + + // id + // Required: true + ID *int64 `json:"id"` +} + +// Validate validates this editgroup +func (m *Editgroup) Validate(formats strfmt.Registry) error { + var res []error + + if err := m.validateEditorID(formats); err != nil { + res = append(res, err) + } + + if err := m.validateID(formats); err != nil { + res = append(res, err) + } + + if len(res) > 0 { + return errors.CompositeValidationError(res...) + } + return nil +} + +func (m *Editgroup) validateEditorID(formats strfmt.Registry) error { + + if err := validate.Required("editor_id", "body", m.EditorID); err != nil { + return err + } + + return nil +} + +func (m *Editgroup) validateID(formats strfmt.Registry) error { + + if err := validate.Required("id", "body", m.ID); err != nil { + return err + } + + return nil +} + +// MarshalBinary interface implementation +func (m *Editgroup) MarshalBinary() ([]byte, error) { + if m == nil { + return nil, nil + } + return swag.WriteJSON(m) +} + +// UnmarshalBinary interface implementation +func (m *Editgroup) UnmarshalBinary(b []byte) error { + var res Editgroup + if err := swag.ReadJSON(b, &res); err != nil { + return err + } + *m = res + return nil +} |