51 lines
1.2 KiB
Go
51 lines
1.2 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 gov_gw_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
|
||
|
}
|