Files
cloud-services/pkg/common/json_blob_read_result.go

9 lines
190 B
Go

package common
type JSONBlobReadResult struct {
Data interface{} `json:"data"`
RealOffset int64 `json:realOffset`
BytesRead int64 `json:"bytesRead"`
BlobSize int64 `json:"blobSize"`
}