mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-04 17:00:12 -05:00
Add the AccessTokenResponse
https://docs.atlassian.com/bitbucket-server/rest/5.5.2/bitbucket-access-tokens-rest.html
This commit is contained in:
parent
7c4d13674c
commit
792d95fe6d
@ -538,6 +538,23 @@ func (p PermissionRepository) String() string {
|
|||||||
return string(p)
|
return string(p)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type AccessTokenResponse struct {
|
||||||
|
ID string `json:"id"`
|
||||||
|
CreatedDate int64 `json:"createdDate"`
|
||||||
|
LastAuthenticated int64 `json:"lastAuthenticated"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
Permissions []string `json:"permissions"`
|
||||||
|
User User `json:"user"`
|
||||||
|
Token string `json:"token"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetAccessTokenResponse cast AccessTokenResponse into structure
|
||||||
|
func GetAccessTokenResponse(r *APIResponse) (AccessTokenResponse, error) {
|
||||||
|
var m AccessTokenResponse
|
||||||
|
err := mapstructure.Decode(r.Values, &m)
|
||||||
|
return m, err
|
||||||
|
}
|
||||||
|
|
||||||
func (k *SSHKey) String() string {
|
func (k *SSHKey) String() string {
|
||||||
parts := make([]string, 1, 2)
|
parts := make([]string, 1, 2)
|
||||||
parts[0] = strings.TrimSpace(k.Text)
|
parts[0] = strings.TrimSpace(k.Text)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user