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

76 lines
1.8 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"
)
// CreateActionWorkflowDispatch CreateActionWorkflowDispatch represents the payload for triggering a workflow dispatch event
//
// swagger:model CreateActionWorkflowDispatch
type CreateActionWorkflowDispatch struct {
// inputs
Inputs map[string]string `json:"inputs,omitempty"`
// ref
// Example: refs/heads/main
// Required: true
Ref *string `json:"ref"`
}
// Validate validates this create action workflow dispatch
func (m *CreateActionWorkflowDispatch) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateRef(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *CreateActionWorkflowDispatch) validateRef(formats strfmt.Registry) error {
if err := validate.Required("ref", "body", m.Ref); err != nil {
return err
}
return nil
}
// ContextValidate validates this create action workflow dispatch based on context it is used
func (m *CreateActionWorkflowDispatch) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *CreateActionWorkflowDispatch) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *CreateActionWorkflowDispatch) UnmarshalBinary(b []byte) error {
var res CreateActionWorkflowDispatch
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}