57 lines
1.3 KiB
Go
57 lines
1.3 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
// All Code Copyright(c) 2018-2020 by Taxnexus, Inc.
|
|
// All rights reserved worldwide.
|
|
// Proprietary product; unlicensed use is not allowed
|
|
|
|
package ops_models
|
|
|
|
// This file was generated by the swagger tool.
|
|
// Editing this file might prove futile when you re-run the swagger generate command
|
|
|
|
import (
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
)
|
|
|
|
// TotalTaxItem Links the tax items totals in the TotalItem struct
|
|
//
|
|
// swagger:model TotalTaxItem
|
|
type TotalTaxItem struct {
|
|
|
|
// ID
|
|
ID string `json:"ID,omitempty"`
|
|
|
|
// tax transaction ID
|
|
TaxTransactionID string `json:"TaxTransactionID,omitempty"`
|
|
|
|
// ID of the Tenant that owns this object
|
|
TenantID string `json:"TenantID,omitempty"`
|
|
|
|
// total item ID
|
|
TotalItemID string `json:"TotalItemID,omitempty"`
|
|
}
|
|
|
|
// Validate validates this total tax item
|
|
func (m *TotalTaxItem) Validate(formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *TotalTaxItem) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *TotalTaxItem) UnmarshalBinary(b []byte) error {
|
|
var res TotalTaxItem
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|