We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
We're trying to implement a custom JsonBuilder for a standard object (Opportunity) but it fails without any error or logs.
For now this is just following the minimal example, such as :
global with sharing class CustomOpportunityJsonBuilder extends pandadoc.JsonBuilder { public CustomOpportunityJsonBuilder() { super(Opportunity.getSObjectType(), null); } public override pandadoc.Item[] getItems(SObject record) { return null; } public override pandadoc.Recipient[] getRecipients(SObject record) { return null; } }
But when we set it up like so :
The Pandadoc component is blank, and clicking on "New Document" gives us an empty page.
Also, the logs are empty :
(Of course, if we use the built-in apex class, pandadoc.OpportunityJsonBuilder, everything works fine) Any idea on how to troubleshoot this ?
pandadoc.OpportunityJsonBuilder
The text was updated successfully, but these errors were encountered:
+1 😐
Sorry, something went wrong.
+1 Also experiencing this same issue
+1 Seems like the issue is still around years later
No branches or pull requests
Hi,
We're trying to implement a custom JsonBuilder for a standard object (Opportunity) but it fails without any error or logs.
For now this is just following the minimal example, such as :
But when we set it up like so :
The Pandadoc component is blank, and clicking on "New Document" gives us an empty page.
Also, the logs are empty :
(Of course, if we use the built-in apex class,
pandadoc.OpportunityJsonBuilder
, everything works fine)Any idea on how to troubleshoot this ?
The text was updated successfully, but these errors were encountered: