github.com/leg100/ots@v0.0.7-0.20210919080622-034055ced4bd/state_version_output.go (about)

     1  package ots
     2  
     3  import (
     4  	"gorm.io/gorm"
     5  )
     6  
     7  type StateVersionOutput struct {
     8  	ID string
     9  
    10  	gorm.Model
    11  
    12  	Name      string
    13  	Sensitive bool
    14  	Type      string
    15  	Value     string
    16  
    17  	// StateVersionOutput belongs to State Version
    18  	StateVersionID uint
    19  }
    20  
    21  type StateVersionOutputList []*StateVersionOutput