2021-01-08 17:40:28 +00:00
|
|
|
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
|
2021-01-19 16:58:40 +00:00
|
|
|
// All Code Copyright(c) 2018-2021 by Taxnexus, Inc.
|
2021-01-08 17:40:28 +00:00
|
|
|
// 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 (
|
2021-02-09 16:56:57 +00:00
|
|
|
"context"
|
|
|
|
|
2021-01-08 17:40:28 +00:00
|
|
|
"github.com/go-openapi/strfmt"
|
|
|
|
"github.com/go-openapi/swag"
|
|
|
|
)
|
|
|
|
|
|
|
|
// InvoiceItem invoice item
|
|
|
|
//
|
|
|
|
// swagger:model InvoiceItem
|
|
|
|
type InvoiceItem struct {
|
|
|
|
|
|
|
|
// Cost of Goods Sold
|
|
|
|
COGS float64 `json:"COGS,omitempty"`
|
|
|
|
|
|
|
|
// Created By User ID
|
|
|
|
CreatedByID string `json:"CreatedByID,omitempty"`
|
|
|
|
|
|
|
|
// Created Date
|
|
|
|
CreatedDate string `json:"CreatedDate,omitempty"`
|
|
|
|
|
|
|
|
// Line Item Description
|
|
|
|
Description string `json:"Description,omitempty"`
|
|
|
|
|
|
|
|
// Family
|
|
|
|
Family string `json:"Family,omitempty"`
|
|
|
|
|
|
|
|
// Taxnexus Record Id
|
|
|
|
ID string `json:"ID,omitempty"`
|
|
|
|
|
|
|
|
// Invoice
|
|
|
|
InvoiceID string `json:"InvoiceID,omitempty"`
|
|
|
|
|
|
|
|
// Last Modified By User ID
|
|
|
|
LastModifiedByID string `json:"LastModifiedByID,omitempty"`
|
|
|
|
|
|
|
|
// Last Modified Date
|
|
|
|
LastModifiedDate string `json:"LastModifiedDate,omitempty"`
|
|
|
|
|
|
|
|
// List Price
|
|
|
|
ListPrice float64 `json:"ListPrice,omitempty"`
|
|
|
|
|
|
|
|
// Quantity
|
|
|
|
MRCInterval int64 `json:"MRCInterval,omitempty"`
|
|
|
|
|
|
|
|
// Order Item
|
|
|
|
OrderItemID string `json:"OrderItemID,omitempty"`
|
|
|
|
|
2021-01-17 21:49:00 +00:00
|
|
|
// Reference the master record that owns this item
|
2021-01-08 17:40:28 +00:00
|
|
|
ParentFK string `json:"ParentFK,omitempty"`
|
|
|
|
|
|
|
|
// Product Code
|
|
|
|
ProductCode string `json:"ProductCode,omitempty"`
|
|
|
|
|
|
|
|
// Product
|
|
|
|
ProductID string `json:"ProductID,omitempty"`
|
|
|
|
|
|
|
|
// Quantity
|
|
|
|
Quantity float64 `json:"Quantity,omitempty"`
|
|
|
|
|
|
|
|
// Quote Line Item
|
|
|
|
QuoteItemID string `json:"QuoteItemID,omitempty"`
|
|
|
|
|
|
|
|
// Source System identifier for this record, if any
|
|
|
|
Ref string `json:"Ref,omitempty"`
|
|
|
|
|
|
|
|
// Rejected Quantity
|
|
|
|
RejectedQuantity float64 `json:"RejectedQuantity,omitempty"`
|
|
|
|
|
|
|
|
// SKU
|
|
|
|
SKU string `json:"SKU,omitempty"`
|
|
|
|
|
|
|
|
// Shipped Quantity
|
|
|
|
ShippedQuantity float64 `json:"ShippedQuantity,omitempty"`
|
|
|
|
|
|
|
|
// Shipping & Handling
|
|
|
|
ShippingHandling float64 `json:"ShippingHandling,omitempty"`
|
|
|
|
|
|
|
|
// Subscription
|
|
|
|
SubscriptionID string `json:"SubscriptionID,omitempty"`
|
|
|
|
|
|
|
|
// Subtotal
|
|
|
|
Subtotal float64 `json:"Subtotal,omitempty"`
|
|
|
|
|
|
|
|
// Taxnexus Code
|
|
|
|
TaxnexusCode string `json:"TaxnexusCode,omitempty"`
|
|
|
|
|
|
|
|
// ID of the Tenant that owns this object
|
|
|
|
TenantID string `json:"TenantID,omitempty"`
|
|
|
|
|
|
|
|
// Total Price
|
|
|
|
TotalPrice float64 `json:"TotalPrice,omitempty"`
|
|
|
|
|
|
|
|
// Unit Price
|
|
|
|
UnitPrice float64 `json:"UnitPrice,omitempty"`
|
|
|
|
|
|
|
|
// The Unit of Measure for this item
|
|
|
|
Units string `json:"Units,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates this invoice item
|
|
|
|
func (m *InvoiceItem) Validate(formats strfmt.Registry) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-02-09 16:56:57 +00:00
|
|
|
// ContextValidate validates this invoice item based on context it is used
|
|
|
|
func (m *InvoiceItem) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-01-08 17:40:28 +00:00
|
|
|
// MarshalBinary interface implementation
|
|
|
|
func (m *InvoiceItem) MarshalBinary() ([]byte, error) {
|
|
|
|
if m == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return swag.WriteJSON(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalBinary interface implementation
|
|
|
|
func (m *InvoiceItem) UnmarshalBinary(b []byte) error {
|
|
|
|
var res InvoiceItem
|
|
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
*m = res
|
|
|
|
return nil
|
|
|
|
}
|