document.go 269 B

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