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