A DTO Class holding the response of Creating a document signature procedure.
name | data type | description |
---|---|---|
id | string | Gets the id. |
name | string | Gets the name. |
description | string | Gets the description. |
actionStatus | ActionStatus | Gets the action status. |
status | string | Gets the status. |
members | array of SignMemberDto | |
files | array of SignFileResponseDto |
Example
{ "id" : "...", "name" : "...", "description" : "...", "actionStatus" : { "status" : "SUCCESS", "errorCode" : { }, "message" : "...", "entityId" : 12345, "entityCode" : "...", "nrAffected" : 12345, "json" : "..." }, "status" : "...", "members" : [ { "firstname" : "...", "lastname" : "...", "email" : "...", "phone" : "...", "user" : "...", "internal" : true, "id" : "..." }, { "firstname" : "...", "lastname" : "...", "email" : "...", "phone" : "...", "user" : "...", "internal" : true, "id" : "..." } ], "files" : [ { "actionStatus" : { "status" : "SUCCESS", "errorCode" : { }, "message" : "...", "entityId" : 12345, "entityCode" : "...", "nrAffected" : 12345, "json" : "..." }, "id" : "...", "name" : "...", "description" : "...", "content" : "..." }, { "actionStatus" : { "status" : "FAIL", "errorCode" : { }, "message" : "...", "entityId" : 12345, "entityCode" : "...", "nrAffected" : 12345, "json" : "..." }, "id" : "...", "name" : "...", "description" : "...", "content" : "..." } ] }