Documentation
¶
Overview ¶
Package customtabs implements the DocuSign SDK category CustomTabs.
Custom Tabs enable accounts to have one or more pre-configured (custom) tabs. Custom tabs save time when users are tagging documents since the users don't have to manually set the tabs' parameters.
This category enables custom tabs to be managed programmatically, including creation, deletion, etc.
Service Api documentation may be found at: https://developers.docusign.com/docs/esign-rest-api/reference/CustomTabs Usage example:
import ( "github.com/jfcote87/esign" "github.com/jfcote87/esign/v2.1/model" ) ... customtabsService := customtabs.New(esignCredential)
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ListOp ¶
ListOp implements DocuSign API SDK CustomTabs::list
func (*ListOp) CustomTabOnly ¶
CustomTabOnly when **true,** only custom tabs are returned in the response.
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
Service implements DocuSign CustomTabs API operations
func New ¶
func New(cred esign.Credential) *Service
New initializes a customtabs service using cred to authorize ops.
func (*Service) Create ¶
func (s *Service) Create(tabMetadata *model.TabMetadata) *CreateOp
Create creates a custom tab.
https://developers.docusign.com/docs/esign-rest-api/reference/customtabs/customtabs/create
SDK Method CustomTabs::create
func (*Service) Delete ¶
Delete deletes custom tab information.
https://developers.docusign.com/docs/esign-rest-api/reference/customtabs/customtabs/delete
SDK Method CustomTabs::delete
func (*Service) Get ¶
Get gets custom tab information.
https://developers.docusign.com/docs/esign-rest-api/reference/customtabs/customtabs/get
SDK Method CustomTabs::get
func (*Service) List ¶
List gets a list of all account tabs.
https://developers.docusign.com/docs/esign-rest-api/reference/customtabs/customtabs/list
SDK Method CustomTabs::list
func (*Service) Update ¶
func (s *Service) Update(customTabID string, tabMetadata *model.TabMetadata) *UpdateOp
Update updates custom tab information.
https://developers.docusign.com/docs/esign-rest-api/reference/customtabs/customtabs/update
SDK Method CustomTabs::update