Skip to content

Commit ba65ec8

Browse files
committed
DEVDOCS-10189 adding codeDepot markers
1 parent 0a2411c commit ba65ec8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/main/java/com/docusign/controller/eSignature/services/CollectPaymentService.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,16 @@ public final class CollectPaymentService {
2626
private static final String DEFAULT_FONT_SIZE = "size11";
2727
private static final String ANCHOR_UNITS = "pixels";
2828

29+
//ds-snippet-start:eSign14Step4
2930
public static EnvelopeSummary collectPayment(
3031
EnvelopesApi envelopesApi,
3132
EnvelopeDefinition envelope,
3233
String accountId
3334
) throws ApiException {
34-
// Step 2. call Envelopes::create API method
35+
// Call Envelopes::create API method
3536
return envelopesApi.createEnvelope(accountId, envelope);
3637
}
38+
//ds-snippet-end:eSign14Step4
3739
// document 1 (html) has multiple tags:
3840
// /l1q/ and /l2q/ -- quantities: drop down
3941
// /l1e/ and /l2e/ -- extended: payment lines
@@ -44,6 +46,7 @@ public static EnvelopeSummary collectPayment(
4446
// recipient 2 - cc
4547
// The envelope will be sent first to the signer.
4648
// After it is signed, a copy is sent to the cc person.
49+
//ds-snippet-start:eSign14Step3
4750
public static EnvelopeDefinition makeEnvelope(
4851
String signerEmail,
4952
String signerName,
@@ -184,4 +187,5 @@ private static FormulaTab createFormulaTab(String anchor, String label, int pric
184187
.locked(TRUE)
185188
.disableAutoSize(FALSE);
186189
}
190+
//ds-snippet-end:eSign14Step3
187191
}

0 commit comments

Comments
 (0)