src.dualinventive.com/go/authentication-service/rest/models/rights.go

44 lines
854 B
Go

// 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/swag"
)
// Rights rights
// swagger:model Rights
type Rights struct {
// rights
Rights []string `json:"rights"`
}
// Validate validates this rights
func (m *Rights) Validate(formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *Rights) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Rights) UnmarshalBinary(b []byte) error {
var res Rights
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}