document.go raw

   1  package 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.
   7  type Document interface {
   8  	UnmarshalDocument(interface{}) error
   9  	GetValue() (interface{}, error)
  10  }
  11