Skip to content
This repository was archived by the owner on Aug 1, 2023. It is now read-only.

[wip] Extracting User and Tenant details during get token details api call #538

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions openstack/identity/v3/tokens/results.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,12 @@ func (r commonResult) ExtractToken() (*Token, error) {
Token struct {
ExpiresAt string `mapstructure:"expires_at"`
} `mapstructure:"token"`
User struct {
Name string `mapstructure:"name,omitempty"`
ID string `mapstucture:"id,omitempty"`
TenantName string `mapstructure:"tenantName,omitempty"`
TenantID string `mapstructure:"tenantId,omitempty"`
} `mapstructure:"user,omitempty"`
}

var token Token
Expand Down