Files
autogits/common/gitea-generated/models/action_workflow_response.go

125 lines
2.9 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"
"strconv"
"github.com/go-openapi/errors"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
)
// ActionWorkflowResponse ActionWorkflowResponse returns a ActionWorkflow
//
// swagger:model ActionWorkflowResponse
type ActionWorkflowResponse struct {
// total count
TotalCount int64 `json:"total_count,omitempty"`
// workflows
Workflows []*ActionWorkflow `json:"workflows"`
}
// Validate validates this action workflow response
func (m *ActionWorkflowResponse) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateWorkflows(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *ActionWorkflowResponse) validateWorkflows(formats strfmt.Registry) error {
if swag.IsZero(m.Workflows) { // not required
return nil
}
for i := 0; i < len(m.Workflows); i++ {
if swag.IsZero(m.Workflows[i]) { // not required
continue
}
if m.Workflows[i] != nil {
if err := m.Workflows[i].Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("workflows" + "." + strconv.Itoa(i))
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("workflows" + "." + strconv.Itoa(i))
}
return err
}
}
}
return nil
}
// ContextValidate validate this action workflow response based on the context it is used
func (m *ActionWorkflowResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
var res []error
if err := m.contextValidateWorkflows(ctx, formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *ActionWorkflowResponse) contextValidateWorkflows(ctx context.Context, formats strfmt.Registry) error {
for i := 0; i < len(m.Workflows); i++ {
if m.Workflows[i] != nil {
if swag.IsZero(m.Workflows[i]) { // not required
return nil
}
if err := m.Workflows[i].ContextValidate(ctx, formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("workflows" + "." + strconv.Itoa(i))
} else if ce, ok := err.(*errors.CompositeError); ok {
return ce.ValidateName("workflows" + "." + strconv.Itoa(i))
}
return err
}
}
}
return nil
}
// MarshalBinary interface implementation
func (m *ActionWorkflowResponse) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *ActionWorkflowResponse) UnmarshalBinary(b []byte) error {
var res ActionWorkflowResponse
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}