lib/api/ops/ops_models/item_basic.go

91 lines
2.1 KiB
Go
Raw Normal View History

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"
)
// 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"`
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"`
// 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
}
2021-02-09 16:56:57 +00:00
// ContextValidate validates this item basic based on context it is used
func (m *ItemBasic) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
2021-01-08 17:40:28 +00:00
// 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
}