lib/api/geo/geo_models/coordinate_request_item.go

51 lines
1.2 KiB
Go
Raw Normal View History

2021-01-08 17:40:28 +00:00
// 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 (
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
)
// CoordinateRequestItem A single Coordinate Request item
//
// swagger:model CoordinateRequestItem
type CoordinateRequestItem struct {
// The address to be translated
Address string `json:"Address,omitempty"`
// Source record reference
Ref string `json:"Ref,omitempty"`
}
// Validate validates this coordinate request item
func (m *CoordinateRequestItem) Validate(formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *CoordinateRequestItem) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *CoordinateRequestItem) UnmarshalBinary(b []byte) error {
var res CoordinateRequestItem
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}