lib/api/sfgate/sfgate_models/address.go

108 lines
2.2 KiB
Go
Raw Normal View History

2021-07-31 03:05:02 +00:00
// Code generated by go-swagger; DO NOT EDIT.
2021-08-05 19:37:53 +00:00
// (c) 2012-2020 by Taxnexus, Inc.
2021-07-31 03:05:02 +00:00
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
2021-08-05 19:37:53 +00:00
package sfgate_models
2021-07-31 03:05:02 +00:00
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"context"
2021-08-05 19:37:53 +00:00
"github.com/go-openapi/errors"
2021-07-31 03:05:02 +00:00
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
2021-08-05 19:37:53 +00:00
"github.com/go-openapi/validate"
2021-07-31 03:05:02 +00:00
)
// Address address
//
// swagger:model Address
type Address struct {
// City
2021-08-05 19:37:53 +00:00
// Required: true
City *string `json:"city"`
2021-07-31 03:05:02 +00:00
// Country full name
2021-08-05 19:37:53 +00:00
Country string `json:"country,omitempty"`
2021-07-31 03:05:02 +00:00
// Country Code
2021-08-05 19:37:53 +00:00
Countrycode string `json:"countrycode,omitempty"`
2021-07-31 03:05:02 +00:00
// Postal Code
2021-08-05 19:37:53 +00:00
Postalcode string `json:"postalcode,omitempty"`
2021-07-31 03:05:02 +00:00
// State full name
2021-08-05 19:37:53 +00:00
State string `json:"state,omitempty"`
2021-07-31 03:05:02 +00:00
// State Code
2021-08-05 19:37:53 +00:00
// Required: true
Statecode *string `json:"statecode"`
2021-07-31 03:05:02 +00:00
// Street number and name
2021-08-05 19:37:53 +00:00
Street string `json:"street,omitempty"`
2021-07-31 03:05:02 +00:00
}
// Validate validates this address
func (m *Address) Validate(formats strfmt.Registry) error {
2021-08-05 19:37:53 +00:00
var res []error
if err := m.validateCity(formats); err != nil {
res = append(res, err)
}
if err := m.validateStatecode(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *Address) validateCity(formats strfmt.Registry) error {
if err := validate.Required("city", "body", m.City); err != nil {
return err
}
return nil
}
func (m *Address) validateStatecode(formats strfmt.Registry) error {
if err := validate.Required("statecode", "body", m.Statecode); err != nil {
return err
}
2021-07-31 03:05:02 +00:00
return nil
}
// ContextValidate validates this address based on context it is used
func (m *Address) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *Address) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Address) UnmarshalBinary(b []byte) error {
var res Address
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}