package
Version:
v1.2.0
Opens a new window with list of versions in this module.
Published: Jul 15, 2026
License: MIT
Opens a new window with license information.
Imports: 2
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Address struct {
City string `json:"city"`
Country *string `json:"country,omitempty"`
Street string `json:"street"`
}
type Article struct {
Author Author `json:"author"`
CoAuthors []Author `json:"coAuthors,omitempty"`
ID uuid.UUID `json:"id"`
Title string `json:"title"`
}
type Author struct {
ContactInfo *ContactInfo `json:"contactInfo,omitempty"`
ID uuid.UUID `json:"id"`
Name string `json:"name"`
}
type ContactInfo struct {
Address *Address `json:"address,omitempty"`
Email mail.Address `json:"email"`
Phone *string `json:"phone,omitempty"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.