Created
May 24, 2015 03:31
-
-
Save jnoller/852e3827459a04e8597f 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
type AuthResponse struct { | |
Access struct { | |
Token struct { | |
ID string `json:"id"` | |
Expires string `json:"expires"` | |
Authby []string `json:"RAX-AUTH:authenticatedBy"` | |
Tenant struct { | |
ID string `json:"id"` | |
Name string `json:"name"` | |
} `json:"tenant"` | |
} `json:"token"` | |
} `json:"access"` | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment