autogits/bots-common/gitea-generated/models/commit_user.go
Adam Majer 598ecbbd5a .
2024-07-07 21:12:40 +02:00

81 lines
1.7 KiB
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 (
"context"
"github.com/go-openapi/errors"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
"github.com/go-openapi/validate"
)
// CommitUser CommitUser contains information of a user in the context of a commit.
//
// swagger:model CommitUser
type CommitUser struct {
// date
Date string `json:"date,omitempty"`
// email
// Format: email
Email strfmt.Email `json:"email,omitempty"`
// name
Name string `json:"name,omitempty"`
}
// Validate validates this commit user
func (m *CommitUser) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateEmail(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *CommitUser) validateEmail(formats strfmt.Registry) error {
if swag.IsZero(m.Email) { // not required
return nil
}
if err := validate.FormatOf("email", "body", "email", m.Email.String(), formats); err != nil {
return err
}
return nil
}
// ContextValidate validates this commit user based on context it is used
func (m *CommitUser) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *CommitUser) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *CommitUser) UnmarshalBinary(b []byte) error {
var res CommitUser
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}