jkawamoto/roadie

View on GitHub
cloud/azure/batch/models/cloud_pool_list_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"
)

// CloudPoolListResult The result of listing the pools in an account.
// swagger:model CloudPoolListResult
type CloudPoolListResult struct {

    // The URL to get the next set of results.
    OdataNextLink string `json:"odata.nextLink,omitempty"`

    // The list of pools.
    Value []*CloudPool `json:"value"`
}

// Validate validates this cloud pool list result
func (m *CloudPoolListResult) 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 *CloudPoolListResult) 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
}