// 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 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 ( "context" "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 } // ContextValidate validates this district taxes based on context it is used func (m *DistrictTaxes) ContextValidate(ctx context.Context, 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 }