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"
|
||
|
)
|
||
|
|
||
|
// RatingEngineItem rating engine item
|
||
|
//
|
||
|
// swagger:model RatingEngineItem
|
||
|
type RatingEngineItem struct {
|
||
|
|
||
|
// Created By
|
||
|
CreatedByID string `json:"CreatedByID,omitempty"`
|
||
|
|
||
|
// Created Date
|
||
|
CreatedDate string `json:"CreatedDate,omitempty"`
|
||
|
|
||
|
// Taxnexus Record Id
|
||
|
ID string `json:"ID,omitempty"`
|
||
|
|
||
|
// Last Modified By
|
||
|
LastModifiedByID string `json:"LastModifiedByID,omitempty"`
|
||
|
|
||
|
// Last Modified Date
|
||
|
LastModifiedDate string `json:"LastModifiedDate,omitempty"`
|
||
|
|
||
|
// Taxnexus Rating Engine Name
|
||
|
Name string `json:"Name,omitempty"`
|
||
|
|
||
|
// Product Code
|
||
|
ProductCode string `json:"ProductCode,omitempty"`
|
||
|
|
||
|
// Rating Engine
|
||
|
RatingEngineID string `json:"RatingEngineID,omitempty"`
|
||
|
|
||
|
// External Reference
|
||
|
Ref string `json:"Ref,omitempty"`
|
||
|
|
||
|
// Taxnexus Code
|
||
|
TaxnexusCodeID string `json:"TaxnexusCodeID,omitempty"`
|
||
|
}
|
||
|
|
||
|
// Validate validates this rating engine item
|
||
|
func (m *RatingEngineItem) Validate(formats strfmt.Registry) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// MarshalBinary interface implementation
|
||
|
func (m *RatingEngineItem) MarshalBinary() ([]byte, error) {
|
||
|
if m == nil {
|
||
|
return nil, nil
|
||
|
}
|
||
|
return swag.WriteJSON(m)
|
||
|
}
|
||
|
|
||
|
// UnmarshalBinary interface implementation
|
||
|
func (m *RatingEngineItem) UnmarshalBinary(b []byte) error {
|
||
|
var res RatingEngineItem
|
||
|
if err := swag.ReadJSON(b, &res); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
*m = res
|
||
|
return nil
|
||
|
}
|