// 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 ( "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 // Required: true License *string `json:"license"` // Operation ID OperationID string `json:"operation_id,omitempty"` // production // Required: true Production *bool `json:"production"` // reseller // Required: true Reseller *string `json:"reseller"` // state // Required: true State *string `json:"state"` // Taxnexus Account Number for recording transactions TaxnexusAccount string `json:"taxnexus_account,omitempty"` // test only TestOnly bool `json:"test_only,omitempty"` // transaction date TransactionDate string `json:"transaction_date,omitempty"` // user // 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 } // 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 }