lib/api/members/members_models/issued_certificate.go

82 lines
1.9 KiB
Go
Raw Normal View History

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
import (
"context"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag/jsonutils"
2023-03-28 17:47:34 +00:00
)
// IssuedCertificate Sanitized user-global issuance evidence. VerificationCode is intentionally excluded from this contract.
2023-03-28 17:47:34 +00:00
//
// swagger:model IssuedCertificate
2023-03-28 17:47:34 +00:00
type IssuedCertificate struct {
// account ID
AccountID *string `json:"AccountID,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"`
// template ID
TemplateID *string `json:"TemplateID,omitempty"`
2023-03-28 17:47:34 +00:00
// user ID
2023-04-15 14:27:18 +00:00
UserID *string `json:"UserID,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 jsonutils.WriteJSON(m)
2023-03-28 17:47:34 +00:00
}
// UnmarshalBinary interface implementation
func (m *IssuedCertificate) UnmarshalBinary(b []byte) error {
var res IssuedCertificate
if err := jsonutils.ReadJSON(b, &res); err != nil {
2023-03-28 17:47:34 +00:00
return err
}
*m = res
return nil
}