lib/api/ops/ops_models/order_item.go

171 lines
3.9 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 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"
)
// OrderItem order item
//
// swagger:model OrderItem
type OrderItem struct {
// Activated?
Activated bool `json:"Activated,omitempty"`
// Activated By
ActiveatedByID string `json:"ActiveatedByID,omitempty"`
// Available Quantity
AvailableQuantity float64 `json:"AvailableQuantity,omitempty"`
// Cost of Goods Sold
COGS float64 `json:"COGS,omitempty"`
// Create Reservation?
CreateReservation bool `json:"CreateReservation,omitempty"`
// Created By User ID
CreatedByID string `json:"CreatedByID,omitempty"`
// Created Date
CreatedDate string `json:"CreatedDate,omitempty"`
// Date Delivered
DateDelivered string `json:"DateDelivered,omitempty"`
// Date Ordered
DateOrdered string `json:"DateOrdered,omitempty"`
// Date Promised
DatePromised string `json:"DatePromised,omitempty"`
// Line Description
Description string `json:"Description,omitempty"`
// Discount
Discount float64 `json:"Discount,omitempty"`
// Family
Family string `json:"Family,omitempty"`
// Taxnexus Record Id
ID string `json:"ID,omitempty"`
// Invoice Item
InvoiceItemID string `json:"InvoiceItemID,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"`
// Location
LocationID string `json:"LocationID,omitempty"`
// Monthly Recurring Charge Indicator
MRCInterval int64 `json:"MRCInterval,omitempty"`
// Order
OrderID string `json:"OrderID,omitempty"`
// Original Order Product
OriginalOrderItemID string `json:"OriginalOrderItemID,omitempty"`
// Reference the master record that owns this item
ParentFK string `json:"ParentFK,omitempty"`
// Posted to external system?
Posted bool `json:"Posted,omitempty"`
// Product Code
ProductCode string `json:"ProductCode,omitempty"`
// Product
ProductID string `json:"ProductID,omitempty"`
// Product Name
ProductName string `json:"ProductName,omitempty"`
// Quantity
Quantity float64 `json:"Quantity,omitempty"`
// Quantity On Hand
QuantityOnHand float64 `json:"QuantityOnHand,omitempty"`
// Quote Line Item
QuoteItemID string `json:"QuoteItemID,omitempty"`
// Source System identifier for this record, if any
Ref string `json:"Ref,omitempty"`
// Start Date
ServiceDate string `json:"ServiceDate,omitempty"`
// Shipping & Handling
ShippingHandling float64 `json:"ShippingHandling,omitempty"`
// Status
Status string `json:"Status,omitempty"`
// Subscription
SubscriptionID string `json:"SubscriptionID,omitempty"`
// Subtotal
Subtotal float64 `json:"Subtotal,omitempty"`
// Taxnexus Code Display
TaxnexusCodeDisplay string `json:"TaxnexusCodeDisplay,omitempty"`
// Taxnexus Code
TaxnexusCodeID string `json:"TaxnexusCodeID,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"`
// Units
Units string `json:"Units,omitempty"`
}
// Validate validates this order item
func (m *OrderItem) Validate(formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *OrderItem) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *OrderItem) UnmarshalBinary(b []byte) error {
var res OrderItem
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}