lib/api/sf-gate/sf_gate_models/place.go

205 lines
4.4 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 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 (
"strconv"
"github.com/go-openapi/errors"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
)
// Place place
//
// swagger:model Place
type Place struct {
// Account
Accountid string `json:"accountid,omitempty"`
// Account Validation
Accountvalidation string `json:"accountvalidation,omitempty"`
// Rollup Amount
Amount float64 `json:"amount,omitempty"`
// AreaDescription
Areadescription string `json:"areadescription,omitempty"`
// Contact
Contactid string `json:"contactid,omitempty"`
// Taxnexus ID of the Country this places is in
Countryid string `json:"countryid,omitempty"`
// County
Countyid string `json:"countyid,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
Gnis int64 `json:"gnis,omitempty"`
// True if this Place has District Sales taxes
Hasdistricttaxes bool `json:"hasdistricttaxes,omitempty"`
// Salesforce Record Id
ID string `json:"id,omitempty"`
// Interest
Interest float64 `json:"interest,omitempty"`
// Land Area
Landarea int64 `json:"landarea,omitempty"`
// latitude
Latitude float64 `json:"latitude,omitempty"`
// Legal Name
Legalname string `json:"legalname,omitempty"`
// longitude
Longitude float64 `json:"longitude,omitempty"`
// Place Name
Name string `json:"name,omitempty"`
// Penalty
Penalty float64 `json:"penalty,omitempty"`
// Polygon Centroid
Polygoncentroid interface{} `json:"polygoncentroid,omitempty"`
// External reference 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"`
// Template
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 place
func (m *Place) 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 *Place) 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 *Place) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Place) UnmarshalBinary(b []byte) error {
var res Place
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}