OBJECT
ShipmentDoc
Represents a document associated with a shipment
link GraphQL Schema definition
- type ShipmentDoc implements RecordDoc {
- # A link to download the document.
- : URL!
- # The filename of the file.
- : String!
- # Document tags associated with the document.
- : [ShipmentDocTag!]
- # The shipment doc's content type.
- : String!
- # The shipment doc's size.
- : Int
- # A flag indicating that a doc has been rejected by INLT
- : Boolean
- # The time that the doc was rejected
- : String
- # The reason code for the doc rejection
- : ShipmentDocRejectionCode
- # Additional explanatory text from INLT
- : String
- # A flag indicating that INLT requires more information regarding the doc
- : Boolean
- # The time that the inquiry was filed
- : String
- # The text of the inquiry
- : String
- }