lib/api/plex/plex_models/district_taxes.go

66 lines
1.5 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 plex_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"
)
// DistrictTaxes district taxes
//
// swagger:model DistrictTaxes
type DistrictTaxes struct {
// adjustments
Adjustments float64 `json:"Adjustments,omitempty"`
// county
County string `json:"County,omitempty"`
// district
District string `json:"District,omitempty"`
// district tax due
DistrictTaxDue float64 `json:"DistrictTaxDue,omitempty"`
// net taxable amount
NetTaxableAmount float64 `json:"NetTaxableAmount,omitempty"`
// rate
Rate float64 `json:"Rate,omitempty"`
// taxable amount
TaxableAmount float64 `json:"TaxableAmount,omitempty"`
}
// Validate validates this district taxes
func (m *DistrictTaxes) Validate(formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *DistrictTaxes) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *DistrictTaxes) UnmarshalBinary(b []byte) error {
var res DistrictTaxes
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}