84 lines
1.9 KiB
Go
84 lines
1.9 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"
|
|
)
|
|
|
|
// ItemBasic item basic
|
|
//
|
|
// swagger:model ItemBasic
|
|
type ItemBasic struct {
|
|
|
|
// Cost of Goods Sold
|
|
COGS float64 `json:"COGS,omitempty"`
|
|
|
|
// Line Item Description
|
|
Description string `json:"Description,omitempty"`
|
|
|
|
// Taxnexus Record Id
|
|
ID string `json:"ID,omitempty"`
|
|
|
|
// Monthly Recurring Charge Indicator
|
|
MRCInterval int64 `json:"MRCInterval,omitempty"`
|
|
|
|
// UUID Reference the master record that owns this item
|
|
ParentFK string `json:"ParentFK,omitempty"`
|
|
|
|
// Product Code
|
|
ProductCode string `json:"ProductCode,omitempty"`
|
|
|
|
// Quantity
|
|
Quantity float64 `json:"Quantity,omitempty"`
|
|
|
|
// Source System identifier for this record, if any
|
|
Ref string `json:"Ref,omitempty"`
|
|
|
|
// Shipping & Handling and Delivery Fees for this Item
|
|
ShippingHandling float64 `json:"ShippingHandling,omitempty"`
|
|
|
|
// Subtotal
|
|
Subtotal float64 `json:"Subtotal,omitempty"`
|
|
|
|
// Taxnexus Code
|
|
TaxnexusCode string `json:"TaxnexusCode,omitempty"`
|
|
|
|
// Unit Price
|
|
UnitPrice float64 `json:"UnitPrice,omitempty"`
|
|
|
|
// The Unit of Measure for this item
|
|
Units string `json:"Units,omitempty"`
|
|
}
|
|
|
|
// Validate validates this item basic
|
|
func (m *ItemBasic) Validate(formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *ItemBasic) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *ItemBasic) UnmarshalBinary(b []byte) error {
|
|
var res ItemBasic
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|