jkawamoto/roadie

View on GitHub
cloud/azure/compute/models/virtual_machine_capture_result_properties.go

Summary

Maintainability
A
50 mins
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/errors"
)

// VirtualMachineCaptureResultProperties Compute-specific operation properties, including output
// swagger:model VirtualMachineCaptureResultProperties
type VirtualMachineCaptureResultProperties struct {

    // Operation output data (raw JSON)
    Output interface{} `json:"output,omitempty"`
}

// Validate validates this virtual machine capture result properties
func (m *VirtualMachineCaptureResultProperties) Validate(formats strfmt.Registry) error {
    var res []error

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