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

116 lines
2.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"
)
// RepoCollaboratorPermission RepoCollaboratorPermission to get repository permission for a collaborator
//
// swagger:model RepoCollaboratorPermission
type RepoCollaboratorPermission struct {
// permission
Permission string `json:"permission,omitempty"`
// role name
RoleName string `json:"role_name,omitempty"`
// user
User *User `json:"user,omitempty"`
}
// Validate validates this repo collaborator permission
func (m *RepoCollaboratorPermission) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateUser(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *RepoCollaboratorPermission) validateUser(formats strfmt.Registry) error {
if swag.IsZero(m.User) { // not required
return nil
}
if m.User != nil {
if err := m.User.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("user")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("user")
}
return err
}
}
return nil
}
// ContextValidate validate this repo collaborator permission based on the context it is used
func (m *RepoCollaboratorPermission) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
var res []error
if err := m.contextValidateUser(ctx, formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *RepoCollaboratorPermission) contextValidateUser(ctx context.Context, formats strfmt.Registry) error {
if m.User != nil {
if swag.IsZero(m.User) { // not required
return nil
}
if err := m.User.ContextValidate(ctx, formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("user")
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("user")
}
return err
}
}
return nil
}
// MarshalBinary interface implementation
func (m *RepoCollaboratorPermission) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *RepoCollaboratorPermission) UnmarshalBinary(b []byte) error {
var res RepoCollaboratorPermission
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}