blob: dec498c57bf96388279d5acdd52a3e369ce5641d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
package smithy
// Document provides access to loosely structured data in a document-like
// format.
//
// Deprecated: See the github.com/aws/smithy-go/document package.
type Document interface {
UnmarshalDocument(interface{}) error
GetValue() (interface{}, error)
}
|