Has anyone implemented Dropdown
How to implement it in Laravel? Like $service = new Text([....]);How can we implement Dropdown in DocuSign Dropdown class is not available in "composer require docusign/esign-client" package so how do I import the dropdown class Thanks in advance for any guide or code
P粉3489155722024-04-01 10:18:22
This is called ListTab
, so you need to look for List.
In PHP it's called ModelList
and you can find it at https://github.com/docusign/docusign-esign-php-client/blob/master/src/Model/ModelList.php
So you add ListTab
to the Tabs object, and that object is instantiated as the ModelList
class.