Package io.nutrient.data.models
Class DocumentIdentifiers
-
- All Implemented Interfaces:
public final class DocumentIdentifiers
Data class representing the document identifiers.
-
-
Field Summary
Fields Modifier and Type Field Description private final Boolean
isInstantDocument
private final String
permanentId
private final String
sourcePdfSha256
private final String
changingId
private final String
layerName
-
Constructor Summary
Constructors Constructor Description DocumentIdentifiers(String permanentId, String sourcePdfSha256, String changingId, String layerName)
-
Method Summary
Modifier and Type Method Description final Boolean
isInstantDocument()
final String
getPermanentId()
final String
getSourcePdfSha256()
final String
getChangingId()
final String
getLayerName()
-
-
Constructor Detail
-
DocumentIdentifiers
DocumentIdentifiers(String permanentId, String sourcePdfSha256, String changingId, String layerName)
- Parameters:
permanentId
- The permanent identifier of the document.changingId
- The changing identifier of the document.layerName
- Name of the layer that specifies the annotations to use.
-
-
Method Detail
-
isInstantDocument
final Boolean isInstantDocument()
-
getPermanentId
final String getPermanentId()
-
getSourcePdfSha256
final String getSourcePdfSha256()
-
getChangingId
final String getChangingId()
-
getLayerName
final String getLayerName()
-
-
-
-