2021-01-08 17:40:28 +00:00
|
|
|
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
|
2021-01-19 16:58:40 +00:00
|
|
|
// All Code Copyright(c) 2018-2021 by Taxnexus, Inc.
|
2021-01-08 17:40:28 +00:00
|
|
|
// 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 (
|
2021-02-09 16:56:57 +00:00
|
|
|
"context"
|
|
|
|
|
2021-01-08 17:40:28 +00:00
|
|
|
"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
|
2021-02-09 16:56:57 +00:00
|
|
|
// Example: 2020-09-28
|
2021-01-08 17:40:28 +00:00
|
|
|
// Required: true
|
|
|
|
EndDate *string `json:"EndDate"`
|
|
|
|
|
|
|
|
// license type
|
2021-02-09 16:56:57 +00:00
|
|
|
// Example: Recreational Wholesaler
|
2021-01-08 17:40:28 +00:00
|
|
|
// Required: true
|
|
|
|
LicenseType *string `json:"LicenseType"`
|
|
|
|
|
|
|
|
// number
|
2021-02-09 16:56:57 +00:00
|
|
|
// Example: 060-X0001
|
2021-01-08 17:40:28 +00:00
|
|
|
// Required: true
|
|
|
|
Number *string `json:"Number"`
|
|
|
|
|
|
|
|
// start date
|
2021-02-09 16:56:57 +00:00
|
|
|
// Example: 2013-01-28
|
2021-01-08 17:40:28 +00:00
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
2021-02-09 16:56:57 +00:00
|
|
|
// ContextValidate validates this license based on context it is used
|
|
|
|
func (m *License) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-01-08 17:40:28 +00:00
|
|
|
// 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
|
|
|
|
}
|