Files
cloud-services/pkg/ota_api/models/common_issue_image.go

57 lines
1.2 KiB
Go

// 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 (
"context"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
)
// CommonIssueImage common issue image
//
// swagger:model common.IssueImage
type CommonIssueImage struct {
// id
ID int64 `json:"id,omitempty"`
// image
Image []int64 `json:"image"`
// issue id
IssueID int64 `json:"issue_id,omitempty"`
}
// Validate validates this common issue image
func (m *CommonIssueImage) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this common issue image based on context it is used
func (m *CommonIssueImage) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *CommonIssueImage) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *CommonIssueImage) UnmarshalBinary(b []byte) error {
var res CommonIssueImage
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}