package
Version:
v1.3.1
Opens a new window with list of versions in this module.
Published: Nov 18, 2024
License: MIT
Opens a new window with license information.
Imports: 4
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Address struct {
Street string `json:"street"`
City string `json:"city"`
Region string `json:"region"`
Country string `json:"country"`
}
type BirthInfo struct {
Birthdate date.Date `json:"birthdate"`
Birthtime time.Time `json:"birthtime"`
BirthdatePTR *date.Date `json:"birthdate-ptr"`
BirthtimePTR *time.Time `json:"birthtime-ptr"`
}
type Person struct {
Name string `json:"name"`
Address *Address `json:"address"`
Birthdate date.Date `json:"birthdate"`
TimeOfBirth time.Time `json:"timeOfBirth"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.