lib/api/regs/regs_models/notebook.go

133 lines
2.7 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
// All Code Copyright(c) 2018-2021 by Taxnexus, Inc.
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
package regs_models
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"strconv"
"github.com/go-openapi/errors"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
)
// Notebook Defines a Taxnexus Notebook
//
// swagger:model Notebook
type Notebook struct {
// Account
AccountID string `json:"AccountID,omitempty"`
// Contact
ContactID string `json:"ContactID,omitempty"`
// Created By
CreatedByID string `json:"CreatedById,omitempty"`
// Created Date
CreatedDate string `json:"CreatedDate,omitempty"`
// Analysis Date
Date string `json:"Date,omitempty"`
// End Date
DateEnd string `json:"DateEnd,omitempty"`
// Start Date
DateStart string `json:"DateStart,omitempty"`
// Description
Description string `json:"Description,omitempty"`
// Record Id
ID string `json:"ID,omitempty"`
// items
Items []*NotebookItem `json:"Items"`
// Last Modified By
LastModifiedByID string `json:"LastModifiedById,omitempty"`
// Last Modifed Date
LastModifiedDate string `json:"LastModifiedDate,omitempty"`
// Ending Period
PeriodEndID string `json:"PeriodEndID,omitempty"`
// Starting Period
PeriodStartID string `json:"PeriodStartID,omitempty"`
// Preparer
PreparerID string `json:"PreparerID,omitempty"`
// Tenant that owns this object instance
TenantID string `json:"TenantID,omitempty"`
// Title
Title string `json:"Title,omitempty"`
}
// Validate validates this notebook
func (m *Notebook) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateItems(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *Notebook) validateItems(formats strfmt.Registry) error {
if swag.IsZero(m.Items) { // not required
return nil
}
for i := 0; i < len(m.Items); i++ {
if swag.IsZero(m.Items[i]) { // not required
continue
}
if m.Items[i] != nil {
if err := m.Items[i].Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("Items" + "." + strconv.Itoa(i))
}
return err
}
}
}
return nil
}
// MarshalBinary interface implementation
func (m *Notebook) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Notebook) UnmarshalBinary(b []byte) error {
var res Notebook
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}