tfstated/pkg/model/version.go

16 lines
191 B
Go
Raw Normal View History

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