Я использую набор инструментов Docusign apex для отправки документа на подпись. проблема в том, что я хочу объявить нового получателя (он не хранится в базе данных salesforce), поэтому я попытался использовать функцию
dfsle.Recipient.newRecipient
, но я получил эту ошибку
Method is not visible: dfsle.Recipient
dfsle.Recipient.newRecipient(Integer, String, dfsle.Recipient.Role,
String, String, dfsle.Recipient.Authentication, String, Boolean)
.
Также я попытался использовать функцию
dfsle.Recipient myRecipient1 = dfsle.Recipient.Recipient(id, type, sequence, routingOrder, role, name, email, signingGroup, phone, authentication, note, emailSettings, hostName, hostEmail, signNow, source, readOnly, required)` but I have got this error: `Method does not exist or incorrect signature: void Recipient(Id, String, Integer, Integer, NULL, String, String, NULL, String, NULL, String, NULL, String, String, Boolean, NULL, Boolean, Boolean)
типа dfsle.Recipient .
отмечая, что я не использую метод
dfsle.Recipient.fromSource
, потому что я хочу создать нового получателя без объекта, хранящегося в salesforce.