lib/api/members/members_models/request_meta.go

76 lines
1.7 KiB
Go
Raw Normal View History

2021-07-31 03:05:02 +00:00
// Code generated by go-swagger; DO NOT EDIT.
2021-08-05 19:37:53 +00:00
// (c) 2012-2020 by Taxnexus, Inc.
2021-07-31 03:05:02 +00:00
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
2023-04-07 18:00:15 +00:00
package members_models
2021-07-31 03:05:02 +00:00
// 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 {
2023-03-28 17:47:34 +00:00
// Account Number of the Reseller or OEM
2021-07-31 03:05:02 +00:00
// Required: true
2023-06-04 23:54:48 +00:00
ExternalAccount *string `json:"ExternalAccount"`
2021-07-31 03:05:02 +00:00
}
// Validate validates this request meta
func (m *RequestMeta) Validate(formats strfmt.Registry) error {
var res []error
2023-06-04 23:54:48 +00:00
if err := m.validateExternalAccount(formats); err != nil {
2021-07-31 03:05:02 +00:00
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
2023-06-04 23:54:48 +00:00
func (m *RequestMeta) validateExternalAccount(formats strfmt.Registry) error {
2021-07-31 03:05:02 +00:00
2023-06-04 23:54:48 +00:00
if err := validate.Required("ExternalAccount", "body", m.ExternalAccount); err != nil {
2021-07-31 03:05:02 +00:00
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
}