Skip to content

Commit a301e89

Browse files
committed
DEVDOCS-10473 - adding codeDepot markers
1 parent 0812390 commit a301e89

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

app/eSignature/examples/eg008_create_template.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,10 @@ def worker(cls, args):
4848

4949
# Template not found -- so create it
5050
# 2. create the template
51+
#ds-snippet-start:eSign8Step3
5152
template_req_object = cls.make_template_req(args["template_args"])
5253
res = templates_api.create_template(account_id=args["account_id"], envelope_template=template_req_object)
54+
#ds-snippet-end:eSign8Step3
5355
template_id = res.template_id
5456
results_template_name = res.name
5557
created_new_template = True
@@ -62,6 +64,7 @@ def worker(cls, args):
6264
}
6365

6466
@classmethod
67+
#ds-snippet-start:eSign8Step2
6568
def make_template_req(cls, args):
6669
"""Creates template req object"""
6770

@@ -201,3 +204,4 @@ def make_template_req(cls, args):
201204
)
202205

203206
return template_request
207+
#ds-snippet-end:eSign8Step2

0 commit comments

Comments
 (0)