2021-01-08 17:40:28 +00:00
|
|
|
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
|
2021-01-19 16:58:40 +00:00
|
|
|
// All Code Copyright(c) 2018-2021 by Taxnexus, Inc.
|
2021-01-08 17:40:28 +00:00
|
|
|
// 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 (
|
2021-02-09 16:56:57 +00:00
|
|
|
"context"
|
|
|
|
|
2021-01-08 17:40:28 +00:00
|
|
|
"github.com/go-openapi/errors"
|
|
|
|
"github.com/go-openapi/strfmt"
|
|
|
|
"github.com/go-openapi/swag"
|
|
|
|
"github.com/go-openapi/validate"
|
|
|
|
)
|
|
|
|
|
|
|
|
// RequestMeta request meta
|
|
|
|
//
|
|
|
|
// swagger:model RequestMeta
|
|
|
|
type RequestMeta struct {
|
|
|
|
|
|
|
|
// license
|
2021-02-09 16:56:57 +00:00
|
|
|
// Example: A12-0000015-LIC
|
2021-01-08 17:40:28 +00:00
|
|
|
// Required: true
|
|
|
|
License *string `json:"license"`
|
|
|
|
|
|
|
|
// Operation ID
|
|
|
|
OperationID string `json:"operation_id,omitempty"`
|
|
|
|
|
|
|
|
// production
|
|
|
|
// Required: true
|
|
|
|
Production *bool `json:"production"`
|
|
|
|
|
|
|
|
// reseller
|
2021-02-09 16:56:57 +00:00
|
|
|
// Example: \u003c\u003cunique key\u003e\u003e
|
2021-01-08 17:40:28 +00:00
|
|
|
// Required: true
|
|
|
|
Reseller *string `json:"reseller"`
|
|
|
|
|
|
|
|
// state
|
2021-02-09 16:56:57 +00:00
|
|
|
// Example: CA
|
2021-01-08 17:40:28 +00:00
|
|
|
// Required: true
|
|
|
|
State *string `json:"state"`
|
|
|
|
|
|
|
|
// Taxnexus Account Number for recording transactions
|
2021-02-09 16:56:57 +00:00
|
|
|
// Example: T0000001
|
2021-01-08 17:40:28 +00:00
|
|
|
TaxnexusAccount string `json:"taxnexus_account,omitempty"`
|
|
|
|
|
|
|
|
// test only
|
2021-02-09 16:56:57 +00:00
|
|
|
// Example: true
|
2021-01-08 17:40:28 +00:00
|
|
|
TestOnly bool `json:"test_only,omitempty"`
|
|
|
|
|
|
|
|
// transaction date
|
2021-02-09 16:56:57 +00:00
|
|
|
// Example: 2019-01-01
|
2021-01-08 17:40:28 +00:00
|
|
|
TransactionDate string `json:"transaction_date,omitempty"`
|
|
|
|
|
|
|
|
// user
|
2021-02-09 16:56:57 +00:00
|
|
|
// Example: \u003c\u003cunique key\u003e\u003e
|
2021-01-08 17:40:28 +00:00
|
|
|
// Required: true
|
|
|
|
User *string `json:"user"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates this request meta
|
|
|
|
func (m *RequestMeta) Validate(formats strfmt.Registry) error {
|
|
|
|
var res []error
|
|
|
|
|
|
|
|
if err := m.validateLicense(formats); err != nil {
|
|
|
|
res = append(res, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := m.validateProduction(formats); err != nil {
|
|
|
|
res = append(res, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := m.validateReseller(formats); err != nil {
|
|
|
|
res = append(res, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := m.validateState(formats); err != nil {
|
|
|
|
res = append(res, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := m.validateUser(formats); err != nil {
|
|
|
|
res = append(res, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(res) > 0 {
|
|
|
|
return errors.CompositeValidationError(res...)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *RequestMeta) validateLicense(formats strfmt.Registry) error {
|
|
|
|
|
|
|
|
if err := validate.Required("license", "body", m.License); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *RequestMeta) validateProduction(formats strfmt.Registry) error {
|
|
|
|
|
|
|
|
if err := validate.Required("production", "body", m.Production); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *RequestMeta) validateReseller(formats strfmt.Registry) error {
|
|
|
|
|
|
|
|
if err := validate.Required("reseller", "body", m.Reseller); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *RequestMeta) validateState(formats strfmt.Registry) error {
|
|
|
|
|
|
|
|
if err := validate.Required("state", "body", m.State); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *RequestMeta) validateUser(formats strfmt.Registry) error {
|
|
|
|
|
|
|
|
if err := validate.Required("user", "body", m.User); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-02-09 16:56:57 +00:00
|
|
|
// ContextValidate validates this request meta based on context it is used
|
|
|
|
func (m *RequestMeta) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-01-08 17:40:28 +00:00
|
|
|
// 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
|
|
|
|
}
|