Created
January 15, 2022 18:49
-
-
Save jcdan3/a99592f4f3e2cb86a32d826862cb92a9 to your computer and use it in GitHub Desktop.
Auto-generated holidays struct
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Holiday []struct { | |
Date string `json:"date"` | |
LocalName string `json:"localName"` | |
Name string `json:"name"` | |
CountryCode string `json:"countryCode"` | |
Fixed bool `json:"fixed"` | |
Global bool `json:"global"` | |
Counties interface{} `json:"counties"` | |
LaunchYear interface{} `json:"launchYear"` | |
Type string `json:"type"` | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment