14 lines
442 B
Go
14 lines
442 B
Go
// ------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
// ------------------------------------------------------------
|
|
|
|
package state
|
|
|
|
// GetResponse is the request object for getting state
|
|
type GetResponse struct {
|
|
Data []byte `json:"data"`
|
|
ETag string `json:"etag,omitempty"`
|
|
Metadata map[string]string `json:"metadata"`
|
|
}
|