2023-03-28 17:47:34 +00:00
|
|
|
// 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/strfmt"
|
|
|
|
"github.com/go-openapi/swag"
|
|
|
|
)
|
|
|
|
|
|
|
|
// IssuedCertificate issued certificate
|
|
|
|
//
|
2023-05-13 16:46:48 +00:00
|
|
|
// swagger:model issuedCertificate
|
2023-03-28 17:47:34 +00:00
|
|
|
type IssuedCertificate struct {
|
|
|
|
|
|
|
|
// certificate ID
|
2023-04-15 14:27:18 +00:00
|
|
|
CertificateID *string `json:"CertificateID,omitempty"`
|
2023-03-28 17:47:34 +00:00
|
|
|
|
|
|
|
// created by ID
|
2023-04-15 14:27:18 +00:00
|
|
|
CreatedByID *string `json:"CreatedByID,omitempty"`
|
2023-03-28 17:47:34 +00:00
|
|
|
|
|
|
|
// created date
|
|
|
|
CreatedDate *string `json:"CreatedDate,omitempty"`
|
|
|
|
|
|
|
|
// enrollment ID
|
2023-04-15 14:27:18 +00:00
|
|
|
EnrollmentID *string `json:"EnrollmentID,omitempty"`
|
2023-03-28 17:47:34 +00:00
|
|
|
|
|
|
|
// expiration date
|
|
|
|
ExpirationDate *string `json:"ExpirationDate,omitempty"`
|
|
|
|
|
|
|
|
// ID
|
|
|
|
ID string `json:"ID,omitempty"`
|
|
|
|
|
|
|
|
// issue date
|
2023-04-15 14:27:18 +00:00
|
|
|
IssueDate *string `json:"IssueDate,omitempty"`
|
2023-03-28 17:47:34 +00:00
|
|
|
|
|
|
|
// last modified by ID
|
2023-04-15 14:27:18 +00:00
|
|
|
LastModifiedByID *string `json:"LastModifiedByID,omitempty"`
|
2023-03-28 17:47:34 +00:00
|
|
|
|
|
|
|
// last modified date
|
|
|
|
LastModifiedDate *string `json:"LastModifiedDate,omitempty"`
|
|
|
|
|
|
|
|
// user ID
|
2023-04-15 14:27:18 +00:00
|
|
|
UserID *string `json:"UserID,omitempty"`
|
2023-03-28 17:47:34 +00:00
|
|
|
|
|
|
|
// verification code
|
2023-04-15 14:27:18 +00:00
|
|
|
VerificationCode *string `json:"VerificationCode,omitempty"`
|
2023-03-28 17:47:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates this issued certificate
|
|
|
|
func (m *IssuedCertificate) Validate(formats strfmt.Registry) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ContextValidate validates this issued certificate based on context it is used
|
|
|
|
func (m *IssuedCertificate) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalBinary interface implementation
|
|
|
|
func (m *IssuedCertificate) MarshalBinary() ([]byte, error) {
|
|
|
|
if m == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return swag.WriteJSON(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalBinary interface implementation
|
|
|
|
func (m *IssuedCertificate) UnmarshalBinary(b []byte) error {
|
|
|
|
var res IssuedCertificate
|
|
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
*m = res
|
|
|
|
return nil
|
|
|
|
}
|