75 lines
1.7 KiB
Go
75 lines
1.7 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 regs_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"
|
||
|
)
|
||
|
|
||
|
// Transaction A regulatory tax transaction
|
||
|
//
|
||
|
// swagger:model Transaction
|
||
|
type Transaction struct {
|
||
|
|
||
|
// Account ID
|
||
|
AccountID string `json:"AccountID,omitempty"`
|
||
|
|
||
|
// Created By
|
||
|
CreatedByID string `json:"CreatedById,omitempty"`
|
||
|
|
||
|
// Created Date
|
||
|
CreatedDate string `json:"CreatedDate,omitempty"`
|
||
|
|
||
|
// Record Id
|
||
|
ID string `json:"ID,omitempty"`
|
||
|
|
||
|
// Last Modified By
|
||
|
LastModifiedByID string `json:"LastModifiedById,omitempty"`
|
||
|
|
||
|
// Last Modifed Date
|
||
|
LastModifiedDate string `json:"LastModifiedDate,omitempty"`
|
||
|
|
||
|
// Tax Transaction ID
|
||
|
TaxTransactionID string `json:"TaxTransactionID,omitempty"`
|
||
|
|
||
|
// Tax Type ID
|
||
|
TaxTypeID string `json:"TaxTypeID,omitempty"`
|
||
|
|
||
|
// Tenant that owns this object instance
|
||
|
TenantID string `json:"TenantID,omitempty"`
|
||
|
|
||
|
// Is this Transaction valid?
|
||
|
Valid bool `json:"Valid,omitempty"`
|
||
|
}
|
||
|
|
||
|
// Validate validates this transaction
|
||
|
func (m *Transaction) Validate(formats strfmt.Registry) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// MarshalBinary interface implementation
|
||
|
func (m *Transaction) MarshalBinary() ([]byte, error) {
|
||
|
if m == nil {
|
||
|
return nil, nil
|
||
|
}
|
||
|
return swag.WriteJSON(m)
|
||
|
}
|
||
|
|
||
|
// UnmarshalBinary interface implementation
|
||
|
func (m *Transaction) UnmarshalBinary(b []byte) error {
|
||
|
var res Transaction
|
||
|
if err := swag.ReadJSON(b, &res); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
*m = res
|
||
|
return nil
|
||
|
}
|