Class CroppingResult
-
- All Implemented Interfaces:
-
android.os.Parcelable
public final class CroppingResult implements Parcelable
Configuration of the cropping result.
-
-
Field Summary
Fields Modifier and Type Field Description private final String
documentUuid
private final String
pageUuid
private final String
errorMessage
-
Constructor Summary
Constructors Constructor Description CroppingResult(Map<String, Object> source)
CroppingResult(JSONObject json)
CroppingResult(String documentUuid, String pageUuid, String errorMessage)
-
Method Summary
Modifier and Type Method Description final String
getDocumentUuid()
The UUID of the document that was cropped. final String
getPageUuid()
The UUID of the page of the document that was cropped. final String
getErrorMessage()
The error message if a problem occurred. final JSONObject
toJson()
-
-
Method Detail
-
getDocumentUuid
final String getDocumentUuid()
The UUID of the document that was cropped.
-
getPageUuid
final String getPageUuid()
The UUID of the page of the document that was cropped.
-
getErrorMessage
final String getErrorMessage()
The error message if a problem occurred.
-
toJson
final JSONObject toJson()
-
-
-
-