blob: a2b07782d974299fbe370c7d801e9632c0de5ac9 [file] [log] [blame]
// Code generated by go-swagger; DO NOT EDIT.
// Copyright 2018 The go-netbox Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
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"
"github.com/go-openapi/swag"
"github.com/go-openapi/validate"
)
// WritableImageAttachment writable image attachment
// swagger:model WritableImageAttachment
type WritableImageAttachment struct {
// Content type
// Required: true
ContentType *string `json:"content_type"`
// ID
// Read Only: true
ID int64 `json:"id,omitempty"`
// Image
// Required: true
// Read Only: true
Image strfmt.URI `json:"image"`
// Name
// Max Length: 50
Name string `json:"name,omitempty"`
// Object id
// Required: true
// Maximum: 2.147483647e+09
// Minimum: 0
ObjectID *int64 `json:"object_id"`
}
// Validate validates this writable image attachment
func (m *WritableImageAttachment) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateContentType(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateImage(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateName(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateObjectID(formats); err != nil {
// prop
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *WritableImageAttachment) validateContentType(formats strfmt.Registry) error {
if err := validate.Required("content_type", "body", m.ContentType); err != nil {
return err
}
return nil
}
func (m *WritableImageAttachment) validateImage(formats strfmt.Registry) error {
if err := validate.Required("image", "body", strfmt.URI(m.Image)); err != nil {
return err
}
if err := validate.FormatOf("image", "body", "uri", m.Image.String(), formats); err != nil {
return err
}
return nil
}
func (m *WritableImageAttachment) validateName(formats strfmt.Registry) error {
if swag.IsZero(m.Name) { // not required
return nil
}
if err := validate.MaxLength("name", "body", string(m.Name), 50); err != nil {
return err
}
return nil
}
func (m *WritableImageAttachment) validateObjectID(formats strfmt.Registry) error {
if err := validate.Required("object_id", "body", m.ObjectID); err != nil {
return err
}
if err := validate.MinimumInt("object_id", "body", int64(*m.ObjectID), 0, false); err != nil {
return err
}
if err := validate.MaximumInt("object_id", "body", int64(*m.ObjectID), 2.147483647e+09, false); err != nil {
return err
}
return nil
}
// MarshalBinary interface implementation
func (m *WritableImageAttachment) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *WritableImageAttachment) UnmarshalBinary(b []byte) error {
var res WritableImageAttachment
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}