jkawamoto/roadie

View on GitHub
cloud/azure/subscriptions/models/subscription_list_result.go

Summary

Maintainability
B
6 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"
    "github.com/go-openapi/validate"
)

// SubscriptionListResult Subscription list operation response.
// swagger:model SubscriptionListResult
type SubscriptionListResult struct {

    // The URL to get the next set of results.
    // Required: true
    NextLink *string `json:"nextLink"`

    // An array of subscriptions.
    Value []*Subscription `json:"value"`
}

// Validate validates this subscription list result
func (m *SubscriptionListResult) Validate(formats strfmt.Registry) error {
    var res []error

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

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

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

func (m *SubscriptionListResult) validateNextLink(formats strfmt.Registry) error {

    if err := validate.Required("nextLink", "body", m.NextLink); err != nil {
        return err
    }

    return nil
}

func (m *SubscriptionListResult) 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
}