// 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/errors" "github.com/go-openapi/strfmt" "github.com/go-openapi/swag" ) // ResponseMeta response meta // // swagger:model ResponseMeta type ResponseMeta struct { // Taxnexus Account Number used for recording transactions TaxnexusAccount string `json:"TaxnexusAccount,omitempty"` // Microservice Contact Info Contact string `json:"contact,omitempty"` // Copyright Info Copyright string `json:"copyright,omitempty"` // License Information and Restrictions License string `json:"license,omitempty"` // Operation ID Operationid string `json:"operationid,omitempty"` // pagination Pagination *Pagination `json:"pagination,omitempty"` // Request IP Address Requestip string `json:"requestip,omitempty"` // Request Type Requesttype string `json:"requesttype,omitempty"` // Request URL Requesturl string `json:"requesturl,omitempty"` // Data Server Info Serverinfo string `json:"serverinfo,omitempty"` // Data Server Response Time (ms) Serverresponsetime string `json:"serverresponsetime,omitempty"` // Backend Server Timestamp Servertimestamp string `json:"servertimestamp,omitempty"` } // Validate validates this response meta func (m *ResponseMeta) Validate(formats strfmt.Registry) error { var res []error if err := m.validatePagination(formats); err != nil { res = append(res, err) } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil } func (m *ResponseMeta) validatePagination(formats strfmt.Registry) error { if swag.IsZero(m.Pagination) { // not required return nil } if m.Pagination != nil { if err := m.Pagination.Validate(formats); err != nil { if ve, ok := err.(*errors.Validation); ok { return ve.ValidateName("pagination") } return err } } return nil } // MarshalBinary interface implementation func (m *ResponseMeta) MarshalBinary() ([]byte, error) { if m == nil { return nil, nil } return swag.WriteJSON(m) } // UnmarshalBinary interface implementation func (m *ResponseMeta) UnmarshalBinary(b []byte) error { var res ResponseMeta if err := swag.ReadJSON(b, &res); err != nil { return err } *m = res return nil }