Skip to content

Commit

Permalink
updated created_at/updated_at type
Browse files Browse the repository at this point in the history
  • Loading branch information
duedares-rvj committed Jan 17, 2025
1 parent 16b8925 commit a1e5b43
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
8 changes: 4 additions & 4 deletions management/management.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions management/management.gen_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions management/token_exchange_profiles.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package management
import (
"context"
"encoding/json"
"time"
)

// TokenExchangeProfile represents a token exchange profile.
Expand All @@ -18,9 +19,9 @@ type TokenExchangeProfile struct {
// Type is the type of the token exchange profile.
Type *string `json:"type,omitempty"`
// CreatedAt is the date and time when the token exchange profile was created.
CreatedAt *string `json:"created_at,omitempty"`
CreatedAt *time.Time `json:"created_at,omitempty"`
// UpdatedAt is the date and time when the token exchange profile was last updated.
UpdatedAt *string `json:"updated_at,omitempty"`
UpdatedAt *time.Time `json:"updated_at,omitempty"`
}

// TokenExchangeProfileList is a list of TokenExchangeProfiles.
Expand Down

0 comments on commit a1e5b43

Please sign in to comment.