2021-08-05 19:37:53 +00:00
|
|
|
// 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 sfgate_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"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ResponseMeta response meta
|
|
|
|
//
|
|
|
|
// swagger:model ResponseMeta
|
|
|
|
type ResponseMeta struct {
|
|
|
|
|
2021-08-14 22:34:08 +00:00
|
|
|
// Microservice Contact Info
|
2021-08-05 19:37:53 +00:00
|
|
|
Contact string `json:"Contact,omitempty"`
|
|
|
|
|
|
|
|
// Copyright Info
|
|
|
|
Copyright string `json:"Copyright,omitempty"`
|
|
|
|
|
2021-08-14 22:34:08 +00:00
|
|
|
// License Information and Restrictions
|
2021-08-05 19:37:53 +00:00
|
|
|
License string `json:"License,omitempty"`
|
|
|
|
|
2021-08-14 22:34:08 +00:00
|
|
|
// Operation ID
|
2021-08-05 19:37:53 +00:00
|
|
|
OperationID string `json:"OperationID,omitempty"`
|
|
|
|
|
|
|
|
// pagination
|
|
|
|
Pagination *Pagination `json:"Pagination,omitempty"`
|
|
|
|
|
2021-08-14 22:34:08 +00:00
|
|
|
// Request IP Address
|
2021-08-05 19:37:53 +00:00
|
|
|
RequestIP string `json:"RequestIP,omitempty"`
|
|
|
|
|
2021-08-14 22:34:08 +00:00
|
|
|
// Request Type
|
2021-08-05 19:37:53 +00:00
|
|
|
RequestType string `json:"RequestType,omitempty"`
|
|
|
|
|
2021-08-14 22:34:08 +00:00
|
|
|
// Request URL
|
2021-08-05 19:37:53 +00:00
|
|
|
RequestURL string `json:"RequestURL,omitempty"`
|
|
|
|
|
2021-08-14 22:34:08 +00:00
|
|
|
// Data Server Info
|
2021-08-05 19:37:53 +00:00
|
|
|
ServerInfo string `json:"ServerInfo,omitempty"`
|
|
|
|
|
2021-08-14 22:34:08 +00:00
|
|
|
// Data Server Response Time (ms)
|
2021-08-05 19:37:53 +00:00
|
|
|
ServerResponseTime string `json:"ServerResponseTime,omitempty"`
|
|
|
|
|
2021-08-14 22:34:08 +00:00
|
|
|
// Backend Server Timestamp
|
|
|
|
ServerTimestamp string `json:"ServerTimestamp,omitempty"`
|
2021-08-05 19:37:53 +00:00
|
|
|
|
2021-08-14 22:34:08 +00:00
|
|
|
// Taxnexus Account Number used for recording transactions
|
2021-08-05 19:37:53 +00:00
|
|
|
TaxnexusAccount string `json:"TaxnexusAccount,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
|
|
|
|
}
|
|
|
|
|
|
|
|
// ContextValidate validate this response meta based on the context it is used
|
|
|
|
func (m *ResponseMeta) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
var res []error
|
|
|
|
|
|
|
|
if err := m.contextValidatePagination(ctx, formats); err != nil {
|
|
|
|
res = append(res, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(res) > 0 {
|
|
|
|
return errors.CompositeValidationError(res...)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ResponseMeta) contextValidatePagination(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
|
|
|
|
if m.Pagination != nil {
|
|
|
|
if err := m.Pagination.ContextValidate(ctx, 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
|
|
|
|
}
|