// Code generated by go-swagger; DO NOT EDIT. // All Code Copyright(c) 2018-2021 by Taxnexus, Inc. // All rights reserved worldwide. // Proprietary product; unlicensed use is not allowed package vendor_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 ( "context" "github.com/go-openapi/errors" "github.com/go-openapi/strfmt" "github.com/go-openapi/swag" ) // ContactBasic contact basic // // swagger:model ContactBasic type ContactBasic struct { // Contact Account Id AccountID string `json:"AccountID,omitempty"` // Email Email string `json:"Email,omitempty"` // Taxnexus Record Id Only; not used in POST ID string `json:"ID,omitempty"` // mailing address MailingAddress *Address `json:"MailingAddress,omitempty"` // Mobile MobilePhone string `json:"MobilePhone,omitempty"` // Name Name string `json:"Name,omitempty"` // UUID Reference the master record that owns this item ParentFK string `json:"ParentFK,omitempty"` // Source System identifier for this record, if any Ref string `json:"Ref,omitempty"` // Unique Taxnexus ID UUID string `json:"UUID,omitempty"` } // Validate validates this contact basic func (m *ContactBasic) Validate(formats strfmt.Registry) error { var res []error if err := m.validateMailingAddress(formats); err != nil { res = append(res, err) } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil } func (m *ContactBasic) validateMailingAddress(formats strfmt.Registry) error { if swag.IsZero(m.MailingAddress) { // not required return nil } if m.MailingAddress != nil { if err := m.MailingAddress.Validate(formats); err != nil { if ve, ok := err.(*errors.Validation); ok { return ve.ValidateName("MailingAddress") } return err } } return nil } // ContextValidate validate this contact basic based on the context it is used func (m *ContactBasic) ContextValidate(ctx context.Context, formats strfmt.Registry) error { var res []error if err := m.contextValidateMailingAddress(ctx, formats); err != nil { res = append(res, err) } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil } func (m *ContactBasic) contextValidateMailingAddress(ctx context.Context, formats strfmt.Registry) error { if m.MailingAddress != nil { if err := m.MailingAddress.ContextValidate(ctx, formats); err != nil { if ve, ok := err.(*errors.Validation); ok { return ve.ValidateName("MailingAddress") } return err } } return nil } // MarshalBinary interface implementation func (m *ContactBasic) MarshalBinary() ([]byte, error) { if m == nil { return nil, nil } return swag.WriteJSON(m) } // UnmarshalBinary interface implementation func (m *ContactBasic) UnmarshalBinary(b []byte) error { var res ContactBasic if err := swag.ReadJSON(b, &res); err != nil { return err } *m = res return nil }