Skip to content

Commit

Permalink
Merge pull request #3 from motivateco/AccessCertAndKey
Browse files Browse the repository at this point in the history
Add support for Access Cert and Access Key parsing in the response
  • Loading branch information
jelmersnoeck authored Nov 20, 2017
2 parents 5a682b2 + 202ed6f commit 3eb5cf7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions service_user.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ import (

type (
ServiceUser struct {
Username string `json:"username"`
Password string `json:"password"`
Type string `json:"type"`
Username string `json:"username"`
Password string `json:"password"`
Type string `json:"type"`
AccessCert string `json:"access_cert"`
AccessKey string `json:"access_key"`
}

ServiceUsersHandler struct {
Expand Down

0 comments on commit 3eb5cf7

Please sign in to comment.