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/strfmt"
|
|
|
|
"github.com/go-openapi/swag"
|
|
|
|
)
|
|
|
|
|
|
|
|
// RequestMeta request meta
|
|
|
|
//
|
|
|
|
// swagger:model RequestMeta
|
|
|
|
type RequestMeta struct {
|
|
|
|
|
2023-03-28 17:47:34 +00:00
|
|
|
// Account Number of the Reseller or OEM
|
2023-04-15 14:27:18 +00:00
|
|
|
TaxnexusAccount string `json:"TaxnexusAccount,omitempty"`
|
2021-08-05 19:37:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates this request meta
|
|
|
|
func (m *RequestMeta) Validate(formats strfmt.Registry) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ContextValidate validates this request meta based on context it is used
|
|
|
|
func (m *RequestMeta) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalBinary interface implementation
|
|
|
|
func (m *RequestMeta) MarshalBinary() ([]byte, error) {
|
|
|
|
if m == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return swag.WriteJSON(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalBinary interface implementation
|
|
|
|
func (m *RequestMeta) UnmarshalBinary(b []byte) error {
|
|
|
|
var res RequestMeta
|
|
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
*m = res
|
|
|
|
return nil
|
|
|
|
}
|