Created
December 30, 2016 19:38
-
-
Save drKnoxy/12bd2b0b5b9f7edeb957ebceda1141f8 to your computer and use it in GitHub Desktop.
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
// PhotoResponse is thing | |
type PhotoResponse struct { | |
Total int `json:"total"` | |
TotalPages int `json:"total_pages"` | |
Results []Photo `json:"results"` | |
} | |
// Photo is thing | |
type Photo struct { | |
ID string `json:"id"` | |
Images ImageSet `json:"urls"` | |
// "created_at": "2016-09-09T08:59:35-04:00", | |
// "categories": [], | |
} | |
// ImageSet is thing | |
type ImageSet struct { | |
Raw string `json:"raw"` | |
Full string `json:"full"` | |
Regular string `json:"regular"` | |
Small string `json:"small"` | |
Thumb string `json:"thumb"` | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment