Package com.veeva.vault.sdk.api.edl
Interface RemoveMatchedDocument.Builder
- Enclosing interface:
- RemoveMatchedDocument
public static interface RemoveMatchedDocument.Builder
Creates an instance of
RemoveMatchedDocument
.-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Builds and returns aRemoveMatchedDocument
object.withDocumentVersionId
(String documentVersionId) Required: Sets the document version ID of the matched document to remove.withEdlItemId
(String edlItemId) Required: Sets the ID of the EDL Item record from which to remove a manually matched document.
-
Method Details
-
withEdlItemId
Required: Sets the ID of the EDL Item record from which to remove a manually matched document.- Parameters:
edlItemId
- the EDL Item ID- Returns:
- this
RemoveMatchedDocument.Builder
-
withDocumentVersionId
Required: Sets the document version ID of the matched document to remove. Must be a manually matched document. If the manually matched document is locked on a specific version, you must provide the full document version ID with the correct version to remove the matched document. For example, "3_1_0". Otherwise, provide only the document ID. For example, "3". Learn more about working with EDLs in Vault Help.- Parameters:
documentVersionId
- the manually matched document version ID in the format "3" or "3_1_0"- Returns:
- this
RemoveMatchedDocument.Builder
-
build
RemoveMatchedDocument build()Builds and returns aRemoveMatchedDocument
object.- Returns:
- this completed RemoveMatchedDocument
-