// Code generated by go-swagger; DO NOT EDIT. // (c) 2012-2020 by Taxnexus, Inc. // All rights reserved worldwide. // Proprietary product; unlicensed use is not allowed package research_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" "github.com/go-openapi/errors" "github.com/go-openapi/strfmt" "github.com/go-openapi/swag" "github.com/go-openapi/validate" ) // Address address // // swagger:model Address type Address struct { // City // Required: true City *string `json:"city"` // Country full name Country string `json:"country,omitempty"` // Country Code Countrycode string `json:"countrycode,omitempty"` // Postal Code Postalcode string `json:"postalcode,omitempty"` // State full name State string `json:"state,omitempty"` // State Code // Required: true Statecode *string `json:"statecode"` // Street number and name Street string `json:"street,omitempty"` } // Validate validates this address func (m *Address) Validate(formats strfmt.Registry) error { 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 } 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 }