// 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 members_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 { // Account Number of the Reseller or OEM // Required: true ExternalAccount *string `json:"ExternalAccount"` } // Validate validates this request meta func (m *RequestMeta) Validate(formats strfmt.Registry) error { var res []error if err := m.validateExternalAccount(formats); err != nil { res = append(res, err) } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil } func (m *RequestMeta) validateExternalAccount(formats strfmt.Registry) error { if err := validate.Required("ExternalAccount", "body", m.ExternalAccount); 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 }