// 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/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 // Example: A12-0000015-LIC // Required: true License *string `json:"license"` // Operation ID OperationID string `json:"operation_id,omitempty"` // production // Required: true Production *bool `json:"production"` // reseller // Example: \u003c\u003cunique key\u003e\u003e // Required: true Reseller *string `json:"reseller"` // state // Example: CA // Required: true State *string `json:"state"` // Taxnexus Account Number for recording transactions // Example: T0000001 TaxnexusAccount string `json:"taxnexus_account,omitempty"` // test only // Example: true TestOnly bool `json:"test_only,omitempty"` // transaction date // Example: 2019-01-01 TransactionDate string `json:"transaction_date,omitempty"` // user // Example: \u003c\u003cunique key\u003e\u003e // 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 } // 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 }