Adds support for GET bulk_send_job/:id (client.GetBulkSendJob(...))
Adds support for GET bulk_send_job/list (client.ListBulkSendJobs(...))
Adds "test cases" to the test application demonstrating these
Because the bulk_send_job/:id API response works a bit differently than most of the other models (it is a hybrid between a record and a "list", as it also fetches a list of signature requests for the job), two new model classes were introduced:
BulkSendJobInfo, which contains the metadata about the job (its ID, when it was created, etc.)
BulkSendJob, which contains a BulkSendJobInfo as well as a list of Signature Requests and the standard ObjectList properties for pagination (page number, page size, etc.)
GET bulk_send_job/:id
(client.GetBulkSendJob(...)
)GET bulk_send_job/list
(client.ListBulkSendJobs(...)
)Because the
bulk_send_job/:id
API response works a bit differently than most of the other models (it is a hybrid between a record and a "list", as it also fetches a list of signature requests for the job), two new model classes were introduced:BulkSendJobInfo
, which contains the metadata about the job (its ID, when it was created, etc.)BulkSendJob
, which contains aBulkSendJobInfo
as well as a list of Signature Requests and the standardObjectList
properties for pagination (page number, page size, etc.)