Newer
Older
// 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 (
"github.com/go-openapi/errors"
"github.com/go-openapi/strfmt"
)
// LogicalAddresses logical addresses
//
// swagger:model LogicalAddresses
type LogicalAddresses []string
// Validate validates this logical addresses
func (m LogicalAddresses) Validate(formats strfmt.Registry) error {
var res []error
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}