// Code generated by go-swagger; DO NOT EDIT. // All Code Copyright(c) 2018-2020 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" ) // License license // // swagger:model License type License struct { // end date // Required: true EndDate *string `json:"EndDate"` // license type // Required: true LicenseType *string `json:"LicenseType"` // number // Required: true Number *string `json:"Number"` // start date // 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 } // 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 }