Commit 7e7c2bcc authored by Michael Lihs's avatar Michael Lihs Committed by Sander van Harmelen

use `ISOTime` for `ImpersonationToken.ExpiresAt` - fixes #251

parent 0d7e821f
...@@ -596,7 +596,7 @@ type ImpersonationToken struct { ...@@ -596,7 +596,7 @@ type ImpersonationToken struct {
Scopes []string `json:"scopes"` Scopes []string `json:"scopes"`
Revoked bool `json:"revoked"` Revoked bool `json:"revoked"`
CreatedAt *time.Time `json:"created_at"` CreatedAt *time.Time `json:"created_at"`
ExpiresAt *time.Time `json:"expires_at"` ExpiresAt *ISOTime `json:"expires_at"`
} }
// GetAllImpersonationTokensOptions represents the available // GetAllImpersonationTokensOptions represents the available
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment