github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/internal/model/one_time_token.go (about)

     1  package model
     2  
     3  import (
     4  	"time"
     5  
     6  	"github.com/kyma-incubator/compass/components/director/internal/tokens"
     7  )
     8  
     9  // OneTimeToken missing godoc
    10  type OneTimeToken struct {
    11  	Token          string
    12  	ConnectorURL   string
    13  	Type           tokens.TokenType
    14  	CreatedAt      time.Time
    15  	Used           bool
    16  	ExpiresAt      time.Time
    17  	UsedAt         time.Time
    18  	ScenarioGroups []string
    19  }