lib/api/metrc-gw/metrc_gw_models/license.go

131 lines
2.7 KiB
Go

// 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"
)
// License license
//
// swagger:model License
type License struct {
// end date
// Example: 2020-09-28
// Required: true
EndDate *string `json:"EndDate"`
// license type
// Example: Recreational Wholesaler
// Required: true
LicenseType *string `json:"LicenseType"`
// number
// Example: 060-X0001
// Required: true
Number *string `json:"Number"`
// start date
// Example: 2013-01-28
// Required: true
StartDate *string `json:"StartDate"`
}
// Validate validates this license
func (m *License) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateEndDate(formats); err != nil {
res = append(res, err)
}
if err := m.validateLicenseType(formats); err != nil {
res = append(res, err)
}
if err := m.validateNumber(formats); err != nil {
res = append(res, err)
}
if err := m.validateStartDate(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *License) validateEndDate(formats strfmt.Registry) error {
if err := validate.Required("EndDate", "body", m.EndDate); err != nil {
return err
}
return nil
}
func (m *License) validateLicenseType(formats strfmt.Registry) error {
if err := validate.Required("LicenseType", "body", m.LicenseType); err != nil {
return err
}
return nil
}
func (m *License) validateNumber(formats strfmt.Registry) error {
if err := validate.Required("Number", "body", m.Number); err != nil {
return err
}
return nil
}
func (m *License) validateStartDate(formats strfmt.Registry) error {
if err := validate.Required("StartDate", "body", m.StartDate); err != nil {
return err
}
return nil
}
// ContextValidate validates this license based on context it is used
func (m *License) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *License) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *License) UnmarshalBinary(b []byte) error {
var res License
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}