SignProcedureConfigDto Data Type

DTO used basically to configure email notification, based on some events , kind of procedure.started ...

Implemented Interfaces
Serializable
Properties
name data type description
email map of array of SignEventEmailDto Gets the email.
webhook map of array of SignEventWebhookDto Gets the webhook.

Example

{
  "email" : {
    "property1" : [ {
      "subject" : "...",
      "message" : "...",
      "to" : [ "...", "..." ]
    }, {
      "subject" : "...",
      "message" : "...",
      "to" : [ "...", "..." ]
    } ],
    "property2" : [ {
      "subject" : "...",
      "message" : "...",
      "to" : [ "...", "..." ]
    }, {
      "subject" : "...",
      "message" : "...",
      "to" : [ "...", "..." ]
    } ]
  },
  "webhook" : {
    "property1" : [ {
      "method" : "...",
      "headers" : {
        "property1" : "...",
        "property2" : "..."
      },
      "url" : "..."
    }, {
      "method" : "...",
      "headers" : {
        "property1" : "...",
        "property2" : "..."
      },
      "url" : "..."
    } ],
    "property2" : [ {
      "method" : "...",
      "headers" : {
        "property1" : "...",
        "property2" : "..."
      },
      "url" : "..."
    }, {
      "method" : "...",
      "headers" : {
        "property1" : "...",
        "property2" : "..."
      },
      "url" : "..."
    } ]
  }
}