Uses of Class
com.onfido.model.Document
-
Packages that use Document Package Description com.onfido.api com.onfido.model -
-
Uses of Document in com.onfido.api
Methods in com.onfido.api that return Document Modifier and Type Method Description DocumentDefaultApi. findDocument(UUID documentId)Retrieve document A single document can be retrieved by calling this endpoint with the document's unique identifier.DocumentDefaultApi. uploadDocument(DocumentTypes type, UUID applicantId, FileTransfer _file, String fileType, String side, CountryCodes issuingCountry, Boolean validateImageQuality, LocationBuilder location)Upload a document Documents are uploaded using this endpoint.Methods in com.onfido.api that return types with arguments of type Document Modifier and Type Method Description ApiResponse<Document>DefaultApi. findDocumentWithHttpInfo(UUID documentId)Retrieve document A single document can be retrieved by calling this endpoint with the document's unique identifier.ApiResponse<Document>DefaultApi. uploadDocumentWithHttpInfo(DocumentTypes type, UUID applicantId, FileTransfer _file, String fileType, String side, CountryCodes issuingCountry, Boolean validateImageQuality, LocationBuilder location)Upload a document Documents are uploaded using this endpoint.Method parameters in com.onfido.api with type arguments of type Document Modifier and Type Method Description okhttp3.CallDefaultApi. findDocumentAsync(UUID documentId, ApiCallback<Document> _callback)Retrieve document (asynchronously) A single document can be retrieved by calling this endpoint with the document's unique identifier.okhttp3.CallDefaultApi. uploadDocumentAsync(DocumentTypes type, UUID applicantId, FileTransfer _file, String fileType, String side, CountryCodes issuingCountry, Boolean validateImageQuality, LocationBuilder location, ApiCallback<Document> _callback)Upload a document (asynchronously) Documents are uploaded using this endpoint. -
Uses of Document in com.onfido.model
Methods in com.onfido.model that return Document Modifier and Type Method Description DocumentDocument. applicantId(UUID applicantId)DocumentDocument. createdAt(OffsetDateTime createdAt)DocumentDocument. downloadHref(String downloadHref)DocumentDocument. fileName(String fileName)DocumentDocument. fileSize(Integer fileSize)DocumentDocument. fileType(Document.FileTypeEnum fileType)static DocumentDocument. fromJson(String jsonString)Create an instance of Document given an JSON stringDocumentDocument. href(String href)DocumentDocument. id(UUID id)DocumentDocument. issuingCountry(CountryCodes issuingCountry)DocumentDocument. putAdditionalProperty(String key, Object value)Set the additional (undeclared) property with the specified name and value.DocumentDocument. side(Document.SideEnum side)DocumentDocument. type(DocumentTypes type)Methods in com.onfido.model that return types with arguments of type Document Modifier and Type Method Description List<Document>DocumentsList. getDocuments()Get documentsMethods in com.onfido.model with parameters of type Document Modifier and Type Method Description DocumentsListDocumentsList. addDocumentsItem(Document documentsItem)Method parameters in com.onfido.model with type arguments of type Document Modifier and Type Method Description DocumentsListDocumentsList. documents(List<Document> documents)voidDocumentsList. setDocuments(List<Document> documents)
-