// 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 geo_models // This file was generated by the swagger tool. // Editing this file might prove futile when you re-run the swagger generate command import ( "strconv" "github.com/go-openapi/errors" "github.com/go-openapi/strfmt" "github.com/go-openapi/swag" ) // County county // // swagger:model County type County struct { // Account AccountID string `json:"AccountID,omitempty"` // Rollup Amount Amount float64 `json:"Amount,omitempty"` // AreaDescription AreaDescription string `json:"AreaDescription,omitempty"` // Contact ContactID string `json:"ContactID,omitempty"` // Country Taxnexus ID CountryID string `json:"CountryID,omitempty"` // Enrollment Status EnrollmentStatus string `json:"EnrollmentStatus,omitempty"` // FIPS FIPS string `json:"FIPS,omitempty"` // FIPS Class FIPSclass string `json:"FIPSclass,omitempty"` // Functional Status FunctionalStatus string `json:"FunctionalStatus,omitempty"` // GNIS Code GNIS int64 `json:"GNIS,omitempty"` // Geocode Geocode string `json:"Geocode,omitempty"` // True if this County has it's own District Sales Taxes HasDistrictTaxes bool `json:"HasDistrictTaxes,omitempty"` // Taxnexus Record Id ID string `json:"ID,omitempty"` // Interest Interest float64 `json:"Interest,omitempty"` // Land Area LandArea int64 `json:"LandArea,omitempty"` // Latitude of the center of this geographic entity Latitude float64 `json:"Latitude,omitempty"` // Legal Name LegalName string `json:"LegalName,omitempty"` // Longitude of the center of this geographic entity Longitude float64 `json:"Longitude,omitempty"` // County Name Name string `json:"Name,omitempty"` // Penalty Penalty float64 `json:"Penalty,omitempty"` // Source System identifier for this record, if any Ref string `json:"Ref,omitempty"` // Reported Adjustments ReportedAdjustments float64 `json:"ReportedAdjustments,omitempty"` // Reported Deductions ReportedDeductions float64 `json:"ReportedDeductions,omitempty"` // Reported Net Revenue ReportedNetRevenue float64 `json:"ReportedNetRevenue,omitempty"` // Reported Rate ReportedRate float64 `json:"ReportedRate,omitempty"` // Reported Revenue ReportedRevenue float64 `json:"ReportedRevenue,omitempty"` // Rollup Revenue Base RevenueBase float64 `json:"RevenueBase,omitempty"` // Rollup Revenue Net RevenueNet float64 `json:"RevenueNet,omitempty"` // Rollup Revenue Not Taxable RevenueNotTaxable float64 `json:"RevenueNotTaxable,omitempty"` // sales tax rate SalesTaxRate *TaxRate `json:"SalesTaxRate,omitempty"` // State StateID string `json:"StateID,omitempty"` // Document Status Status string `json:"Status,omitempty"` // Reported Tax Subtotal float64 `json:"Subtotal,omitempty"` // tax instances TaxInstances []*TaxInstance `json:"TaxInstances"` // Print Template ID TemplateID string `json:"TemplateID,omitempty"` // Total Amount TotalAmount float64 `json:"TotalAmount,omitempty"` // Total Area TotalArea int64 `json:"TotalArea,omitempty"` // Unit Base UnitBase float64 `json:"UnitBase,omitempty"` // Water Area WaterArea int64 `json:"WaterArea,omitempty"` } // Validate validates this county func (m *County) Validate(formats strfmt.Registry) error { var res []error if err := m.validateSalesTaxRate(formats); err != nil { res = append(res, err) } if err := m.validateTaxInstances(formats); err != nil { res = append(res, err) } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil } func (m *County) validateSalesTaxRate(formats strfmt.Registry) error { if swag.IsZero(m.SalesTaxRate) { // not required return nil } if m.SalesTaxRate != nil { if err := m.SalesTaxRate.Validate(formats); err != nil { if ve, ok := err.(*errors.Validation); ok { return ve.ValidateName("SalesTaxRate") } return err } } return nil } func (m *County) validateTaxInstances(formats strfmt.Registry) error { if swag.IsZero(m.TaxInstances) { // not required return nil } for i := 0; i < len(m.TaxInstances); i++ { if swag.IsZero(m.TaxInstances[i]) { // not required continue } if m.TaxInstances[i] != nil { if err := m.TaxInstances[i].Validate(formats); err != nil { if ve, ok := err.(*errors.Validation); ok { return ve.ValidateName("TaxInstances" + "." + strconv.Itoa(i)) } return err } } } return nil } // MarshalBinary interface implementation func (m *County) MarshalBinary() ([]byte, error) { if m == nil { return nil, nil } return swag.WriteJSON(m) } // UnmarshalBinary interface implementation func (m *County) UnmarshalBinary(b []byte) error { var res County if err := swag.ReadJSON(b, &res); err != nil { return err } *m = res return nil }