// 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 sf_gate_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" "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"` // Created By User ID Createdbyid string `json:"createdbyid,omitempty"` // Created Date Createddate string `json:"createddate,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"` // Geocode Geocode string `json:"geocode,omitempty"` // GNIS Code Gnis int64 `json:"gnis,omitempty"` // True if this Place has 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"` // Last Modified By User ID Lastmodifiedbyid string `json:"lastmodifiedbyid,omitempty"` // Last Modified Date Lastmodifieddate string `json:"lastmodifieddate,omitempty"` // latitude Latitude float64 `json:"latitude,omitempty"` // Legal Name Legalname string `json:"legalname,omitempty"` // longitude 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"` // State Stateid string `json:"stateid,omitempty"` // Document Status Status string `json:"status,omitempty"` // Reported Tax Subtotal float64 `json:"subtotal,omitempty"` // taxinstances 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.validateTaxinstances(formats); err != nil { res = append(res, err) } if len(res) > 0 { return errors.CompositeValidationError(res...) } 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 } // ContextValidate validate this county based on the context it is used func (m *County) ContextValidate(ctx context.Context, formats strfmt.Registry) error { var res []error if err := m.contextValidateTaxinstances(ctx, formats); err != nil { res = append(res, err) } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil } func (m *County) contextValidateTaxinstances(ctx context.Context, formats strfmt.Registry) error { for i := 0; i < len(m.Taxinstances); i++ { if m.Taxinstances[i] != nil { if err := m.Taxinstances[i].ContextValidate(ctx, 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 }