fork of indigo with slightly nicer lexgen
at main 756 B view raw
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3package ozone 4 5// schema: tools.ozone.set.defs 6 7// SetDefs_Set is a "set" in the tools.ozone.set.defs schema. 8type SetDefs_Set struct { 9 Description *string `json:"description,omitempty" cborgen:"description,omitempty"` 10 Name string `json:"name" cborgen:"name"` 11} 12 13// SetDefs_SetView is a "setView" in the tools.ozone.set.defs schema. 14type SetDefs_SetView struct { 15 CreatedAt string `json:"createdAt" cborgen:"createdAt"` 16 Description *string `json:"description,omitempty" cborgen:"description,omitempty"` 17 Name string `json:"name" cborgen:"name"` 18 SetSize int64 `json:"setSize" cborgen:"setSize"` 19 UpdatedAt string `json:"updatedAt" cborgen:"updatedAt"` 20}