tfstated/pkg/model/version.go

18 lines
224 B
Go
Raw Normal View History

package model
import (
"encoding/json"
"time"
"go.n16f.net/uuid"
)
type Version struct {
AccountId string
Created time.Time
Data json.RawMessage
Id uuid.UUID
Lock *string
StateId uuid.UUID
}