lib/api/stash/stash_models/document.go

70 lines
1.4 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
// (c) 2012-2020 by Taxnexus, Inc.
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
package stash_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"
)
// Document document
//
// swagger:model Document
type Document struct {
// filename
Filename string `json:"Filename,omitempty"`
// ID
ID string `json:"ID,omitempty"`
// parent ID
ParentID string `json:"ParentID,omitempty"`
// saga type
SagaType string `json:"SagaType,omitempty"`
// title
Title string `json:"Title,omitempty"`
// URI
URI string `json:"URI,omitempty"`
}
// Validate validates this document
func (m *Document) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this document based on context it is used
func (m *Document) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *Document) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Document) UnmarshalBinary(b []byte) error {
var res Document
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}