Skip to content
Merged
Show file tree
Hide file tree
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
20 changes: 10 additions & 10 deletions api/connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ import "fmt"

// ConnectionTestResult holds the result of a connection test
type ConnectionTestResult struct {
APIKeyValid bool
AccountAccess bool
AccountID int
AccountName string
UserID string
UserEmail string
Region string
NerdGraphURL string
Error error
ErrorMessage string
APIKeyValid bool
AccountAccess bool
AccountID int
AccountName string
UserID string
UserEmail string
Region string
NerdGraphURL string
Error error
ErrorMessage string
}

// TestConnection verifies the API key and optionally account access
Expand Down
Loading