Class FulfillmentDocument
- java.lang.Object
-
- software.amazon.spapi.models.services.v1.FulfillmentDocument
-
public class FulfillmentDocument extends java.lang.Object
Document that captured during service appointment fulfillment that portrays proof of completion
-
-
Constructor Summary
Constructors Constructor Description FulfillmentDocument()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FulfillmentDocument
contentSha256(java.lang.String contentSha256)
boolean
equals(java.lang.Object o)
java.lang.String
getContentSha256()
Sha256 hash of the file content.java.lang.String
getUploadDestinationId()
The identifier of the upload destination.int
hashCode()
void
setContentSha256(java.lang.String contentSha256)
void
setUploadDestinationId(java.lang.String uploadDestinationId)
java.lang.String
toString()
FulfillmentDocument
uploadDestinationId(java.lang.String uploadDestinationId)
-
-
-
Method Detail
-
uploadDestinationId
public FulfillmentDocument uploadDestinationId(java.lang.String uploadDestinationId)
-
getUploadDestinationId
public java.lang.String getUploadDestinationId()
The identifier of the upload destination. Get this value by calling the `createServiceDocumentUploadDestination` operation of the Services API.- Returns:
- uploadDestinationId
-
setUploadDestinationId
public void setUploadDestinationId(java.lang.String uploadDestinationId)
-
contentSha256
public FulfillmentDocument contentSha256(java.lang.String contentSha256)
-
getContentSha256
public java.lang.String getContentSha256()
Sha256 hash of the file content. This value is used to determine if the file has been corrupted or tampered with during transit.- Returns:
- contentSha256
-
setContentSha256
public void setContentSha256(java.lang.String contentSha256)
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-