jkawamoto/roadie

View on GitHub
cloud/azure/batch/models/task_add_collection_result.go

Summary

Maintainability
B
4 hrs
Test Coverage
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 (
    strfmt "github.com/go-openapi/strfmt"
    "github.com/go-openapi/swag"

    "github.com/go-openapi/errors"
)

// TaskAddCollectionResult The result of adding a collection of tasks to a job.
// swagger:model TaskAddCollectionResult
type TaskAddCollectionResult struct {

    // The results of the add task collection operation.
    Value []*TaskAddResult `json:"value"`
}

// Validate validates this task add collection result
func (m *TaskAddCollectionResult) Validate(formats strfmt.Registry) error {
    var res []error

    if err := m.validateValue(formats); err != nil {
        // prop
        res = append(res, err)
    }

    if len(res) > 0 {
        return errors.CompositeValidationError(res...)
    }
    return nil
}

func (m *TaskAddCollectionResult) validateValue(formats strfmt.Registry) error {

    if swag.IsZero(m.Value) { // not required
        return nil
    }

    for i := 0; i < len(m.Value); i++ {

        if swag.IsZero(m.Value[i]) { // not required
            continue
        }

        if m.Value[i] != nil {

            if err := m.Value[i].Validate(formats); err != nil {
                return err
            }
        }

    }

    return nil
}