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