forked from docusign/docusign-esign-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_api_request_logs_result.py
More file actions
42 lines (27 loc) · 913 Bytes
/
Copy pathtest_api_request_logs_result.py
File metadata and controls
42 lines (27 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# coding: utf-8
"""
DocuSign REST API
The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
OpenAPI spec version: v2
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
from __future__ import absolute_import
import os
import sys
import unittest
import docusign_esign
from docusign_esign.rest import ApiException
from docusign_esign.models.api_request_logs_result import ApiRequestLogsResult
class TestApiRequestLogsResult(unittest.TestCase):
""" ApiRequestLogsResult unit test stubs """
def setUp(self):
pass
def tearDown(self):
pass
def testApiRequestLogsResult(self):
"""
Test ApiRequestLogsResult
"""
model = docusign_esign.models.api_request_logs_result.ApiRequestLogsResult()
if __name__ == '__main__':
unittest.main()