85 lines
2.0 KiB
Go
85 lines
2.0 KiB
Go
// 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 metrc_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/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
)
|
|
|
|
// ResponseMeta response meta
|
|
//
|
|
// swagger:model ResponseMeta
|
|
type ResponseMeta struct {
|
|
|
|
// 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"`
|
|
|
|
// 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"`
|
|
|
|
// Taxnexus Account Number used for recording transactions
|
|
Taxnexusaccount string `json:"taxnexusaccount,omitempty"`
|
|
}
|
|
|
|
// Validate validates this response meta
|
|
func (m *ResponseMeta) Validate(formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validates this response meta based on context it is used
|
|
func (m *ResponseMeta) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
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
|
|
}
|