Period is representation of confidence level for the parsed date.
For example, if the parsed date has period level `Month`, then
the parser is only confident up to the month, while the day and
time is taken from the current time.
const (
None Period = iota Second
Minute
Hour
Day
Month
Year
)