Documentation
¶
Overview ¶
Package users implements the DocuSign SDK category Users.
Use the Users category to manage the users in your accounts.
You can:
* Set custom user settings. * Manage a users profile. * Add delete users. * Add and delete the initials and signature images for a user.
Service Api documentation may be found at: https://developers.docusign.com/docs/esign-rest-api/reference/Users Usage example:
import ( "github.com/jfcote87/esign" "github.com/jfcote87/esign/v2.1/model" ) ... usersService := users.New(esignCredential)
Index ¶
- type ContactsCreateOp
- type ContactsDeleteListOp
- type ContactsDeleteOp
- type ContactsGetOp
- type ContactsUpdateOp
- type CreateOp
- type CustomSettingsDeleteOp
- type CustomSettingsListOp
- type CustomSettingsUpdateOp
- type DeleteOp
- type DeleteProfileImageOp
- type GetOp
- type GetProfileImageOp
- type GetSettingsOp
- type ListOp
- func (op *ListOp) AdditionalInfo() *ListOp
- func (op *ListOp) AlternateAdminsOnly(val string) *ListOp
- func (op *ListOp) Count(val int) *ListOp
- func (op *ListOp) Do(ctx context.Context) (*model.UserInformationList, error)
- func (op *ListOp) DomainUsersOnly(val string) *ListOp
- func (op *ListOp) Email(val string) *ListOp
- func (op *ListOp) EmailSubstring(val string) *ListOp
- func (op *ListOp) GroupID(val string) *ListOp
- func (op *ListOp) IncludeUsersettingsForCsv() *ListOp
- func (op *ListOp) LoginStatus(val string) *ListOp
- func (op *ListOp) NotGroupID(val string) *ListOp
- func (op *ListOp) StartPosition(val int) *ListOp
- func (op *ListOp) Status(val ...string) *ListOp
- func (op *ListOp) UserNameSubstring(val string) *ListOp
- type ProfilesGetOp
- type ProfilesUpdateOp
- type Service
- func (s *Service) ContactsCreate(contactModRequest *model.ContactModRequest) *ContactsCreateOp
- func (s *Service) ContactsDelete(contactID string) *ContactsDeleteOp
- func (s *Service) ContactsDeleteList(contactModRequest *model.ContactModRequest) *ContactsDeleteListOp
- func (s *Service) ContactsGet(contactID string) *ContactsGetOp
- func (s *Service) ContactsUpdate(contactModRequest *model.ContactModRequest) *ContactsUpdateOp
- func (s *Service) Create(newUsersDefinition *model.NewUsersDefinition) *CreateOp
- func (s *Service) CustomSettingsDelete(userID string, customSettingsInformation *model.CustomSettingsInformation) *CustomSettingsDeleteOp
- func (s *Service) CustomSettingsList(userID string) *CustomSettingsListOp
- func (s *Service) CustomSettingsUpdate(userID string, customSettingsInformation *model.CustomSettingsInformation) *CustomSettingsUpdateOp
- func (s *Service) Delete(userInfoList *model.UserInfoList) *DeleteOp
- func (s *Service) DeleteProfileImage(userID string) *DeleteProfileImageOp
- func (s *Service) Get(userID string) *GetOp
- func (s *Service) GetProfileImage(userID string) *GetProfileImageOp
- func (s *Service) GetSettings(userID string) *GetSettingsOp
- func (s *Service) List() *ListOp
- func (s *Service) ProfilesGet(userID string) *ProfilesGetOp
- func (s *Service) ProfilesUpdate(userID string, userProfile *model.UserProfile) *ProfilesUpdateOp
- func (s *Service) SignaturesCreate(userID string, userSignaturesInformation *model.UserSignaturesInformation, ...) *SignaturesCreateOp
- func (s *Service) SignaturesDelete(signatureID string, userID string) *SignaturesDeleteOp
- func (s *Service) SignaturesDeleteImage(imageType string, signatureID string, userID string) *SignaturesDeleteImageOp
- func (s *Service) SignaturesGet(signatureID string, userID string) *SignaturesGetOp
- func (s *Service) SignaturesGetImage(imageType string, signatureID string, userID string) *SignaturesGetImageOp
- func (s *Service) SignaturesList(userID string) *SignaturesListOp
- func (s *Service) SignaturesUpdate(signatureID string, userID string, ...) *SignaturesUpdateOp
- func (s *Service) SignaturesUpdateImage(imageType string, signatureID string, userID string, media io.Reader, ...) *SignaturesUpdateImageOp
- func (s *Service) SignaturesUpdateList(userID string, userSignaturesInformation *model.UserSignaturesInformation) *SignaturesUpdateListOp
- func (s *Service) Update(userID string, userInformation *model.UserInformation) *UpdateOp
- func (s *Service) UpdateList(userInformationList *model.UserInformationList) *UpdateListOp
- func (s *Service) UpdateProfileImage(userID string, media io.Reader, mimeType string) *UpdateProfileImageOp
- func (s *Service) UpdateSettings(userID string, userSettingsInformation *model.UserSettingsInformation) *UpdateSettingsOp
- type SignaturesCreateOp
- type SignaturesDeleteImageOp
- type SignaturesDeleteOp
- type SignaturesGetImageOp
- type SignaturesGetOp
- type SignaturesListOp
- type SignaturesUpdateImageOp
- type SignaturesUpdateListOp
- type SignaturesUpdateOp
- type UpdateListOp
- type UpdateOp
- type UpdateProfileImageOp
- type UpdateSettingsOp
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ContactsCreateOp ¶
ContactsCreateOp implements DocuSign API SDK Users::postContacts
func (*ContactsCreateOp) Do ¶
func (op *ContactsCreateOp) Do(ctx context.Context) (*model.ContactUpdateResponse, error)
Do executes the op. A nil context will return error.
type ContactsDeleteListOp ¶
ContactsDeleteListOp implements DocuSign API SDK Users::deleteContacts
func (*ContactsDeleteListOp) Do ¶
func (op *ContactsDeleteListOp) Do(ctx context.Context) (*model.ContactUpdateResponse, error)
Do executes the op. A nil context will return error.
type ContactsDeleteOp ¶
ContactsDeleteOp implements DocuSign API SDK Users::deleteContactWithId
func (*ContactsDeleteOp) Do ¶
func (op *ContactsDeleteOp) Do(ctx context.Context) (*model.ContactUpdateResponse, error)
Do executes the op. A nil context will return error.
type ContactsGetOp ¶
ContactsGetOp implements DocuSign API SDK Users::getContactById
func (*ContactsGetOp) CloudProvider ¶
func (op *ContactsGetOp) CloudProvider(val string) *ContactsGetOp
CloudProvider (Optional) The cloud provider from which to retrieve the contacts. Valid values are:
- `rooms` - `docusignCore` (default)
func (*ContactsGetOp) Do ¶
func (op *ContactsGetOp) Do(ctx context.Context) (*model.ContactGetResponse, error)
Do executes the op. A nil context will return error.
type ContactsUpdateOp ¶
ContactsUpdateOp implements DocuSign API SDK Users::putContacts
func (*ContactsUpdateOp) Do ¶
func (op *ContactsUpdateOp) Do(ctx context.Context) (*model.ContactUpdateResponse, error)
Do executes the op. A nil context will return error.
type CustomSettingsDeleteOp ¶
CustomSettingsDeleteOp implements DocuSign API SDK Users::deleteCustomSettings
func (*CustomSettingsDeleteOp) Do ¶
func (op *CustomSettingsDeleteOp) Do(ctx context.Context) (*model.CustomSettingsInformation, error)
Do executes the op. A nil context will return error.
type CustomSettingsListOp ¶
CustomSettingsListOp implements DocuSign API SDK Users::listCustomSettings
func (*CustomSettingsListOp) Do ¶
func (op *CustomSettingsListOp) Do(ctx context.Context) (*model.CustomSettingsInformation, error)
Do executes the op. A nil context will return error.
type CustomSettingsUpdateOp ¶
CustomSettingsUpdateOp implements DocuSign API SDK Users::updateCustomSettings
func (*CustomSettingsUpdateOp) Do ¶
func (op *CustomSettingsUpdateOp) Do(ctx context.Context) (*model.CustomSettingsInformation, error)
Do executes the op. A nil context will return error.
type DeleteOp ¶
DeleteOp implements DocuSign API SDK Users::delete
type DeleteProfileImageOp ¶
DeleteProfileImageOp implements DocuSign API SDK Users::deleteProfileImage
type GetOp ¶
GetOp implements DocuSign API SDK Users::getInformation
func (*GetOp) AdditionalInfo ¶
AdditionalInfo setting this parameter has no effect in this operation.
type GetProfileImageOp ¶
GetProfileImageOp implements DocuSign API SDK Users::getProfileImage
func (*GetProfileImageOp) Encoding ¶
func (op *GetProfileImageOp) Encoding(val string) *GetProfileImageOp
Encoding reserved for DocuSign.
type GetSettingsOp ¶
GetSettingsOp implements DocuSign API SDK Users::getSettings
func (*GetSettingsOp) Do ¶
func (op *GetSettingsOp) Do(ctx context.Context) (*model.UserSettingsInformation, error)
Do executes the op. A nil context will return error.
type ListOp ¶
ListOp implements DocuSign API SDK Users::list
func (*ListOp) AdditionalInfo ¶
AdditionalInfo when **true,** the custom settings information is returned for each user in the account. If this parameter is omitted, the default behavior is **false.**
func (*ListOp) AlternateAdminsOnly ¶ added in v0.10.0
AlternateAdminsOnly set the call query parameter alternate_admins_only
func (*ListOp) Count ¶
Count is the maximum number of results to return.
Use `start_position` to specify the number of results to skip.
Valid values: `1` to `100`
func (*ListOp) DomainUsersOnly ¶ added in v0.10.0
DomainUsersOnly set the call query parameter domain_users_only
func (*ListOp) Email ¶
Email filters results based on the email address associated with the user that you want to return.
**Note:** You can use either this parameter or the `email_substring` parameter, but not both. For older accounts, this parameter might return multiple users who are associated with a single email address.
func (*ListOp) EmailSubstring ¶
EmailSubstring filters results based on a fragment of an email address. For example, you could enter `gmail` to return all users who have Gmail addresses.
**Note:** You do not use a wildcard character with this parameter. You can use either this parameter or the `email` parameter, but not both.
func (*ListOp) IncludeUsersettingsForCsv ¶
IncludeUsersettingsForCsv when **true,** the response includes the `userSettings` object data in CSV format.
func (*ListOp) LoginStatus ¶
LoginStatus when **true,** the response includes the login status of each user.
func (*ListOp) NotGroupID ¶
NotGroupID return user records excluding the specified group IDs.
func (*ListOp) StartPosition ¶
StartPosition is the zero-based index of the result from which to start returning results.
Use with `count` to limit the number of results.
The default value is `0`.
func (*ListOp) Status ¶
Status filters results by user account status. Possible values are:
* `ActivationRequired` * `ActivationSent` * `Active` * `Closed` * `Disabled`
func (*ListOp) UserNameSubstring ¶
UserNameSubstring filters results based on a full or partial user name.
**Note:** When you enter a partial user name, you do not use a wildcard character.
type ProfilesGetOp ¶
ProfilesGetOp implements DocuSign API SDK Users::getProfile
func (*ProfilesGetOp) Do ¶
func (op *ProfilesGetOp) Do(ctx context.Context) (*model.UserProfile, error)
Do executes the op. A nil context will return error.
type ProfilesUpdateOp ¶
ProfilesUpdateOp implements DocuSign API SDK Users::updateProfile
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
Service implements DocuSign Users API operations
func New ¶
func New(cred esign.Credential) *Service
New initializes a users service using cred to authorize ops.
func (*Service) ContactsCreate ¶
func (s *Service) ContactsCreate(contactModRequest *model.ContactModRequest) *ContactsCreateOp
ContactsCreate add contacts to a contacts list.
https://developers.docusign.com/docs/esign-rest-api/reference/users/contacts/create
SDK Method Users::postContacts
func (*Service) ContactsDelete ¶
func (s *Service) ContactsDelete(contactID string) *ContactsDeleteOp
ContactsDelete deletes a contact.
https://developers.docusign.com/docs/esign-rest-api/reference/users/contacts/delete
SDK Method Users::deleteContactWithId
func (*Service) ContactsDeleteList ¶
func (s *Service) ContactsDeleteList(contactModRequest *model.ContactModRequest) *ContactsDeleteListOp
ContactsDeleteList deletes multiple contacts from an account.
https://developers.docusign.com/docs/esign-rest-api/reference/users/contacts/deletelist
SDK Method Users::deleteContacts
func (*Service) ContactsGet ¶
func (s *Service) ContactsGet(contactID string) *ContactsGetOp
ContactsGet gets one or more contacts.
https://developers.docusign.com/docs/esign-rest-api/reference/users/contacts/get
SDK Method Users::getContactById
func (*Service) ContactsUpdate ¶
func (s *Service) ContactsUpdate(contactModRequest *model.ContactModRequest) *ContactsUpdateOp
ContactsUpdate updates one or more contacts.
https://developers.docusign.com/docs/esign-rest-api/reference/users/contacts/update
SDK Method Users::putContacts
func (*Service) Create ¶
func (s *Service) Create(newUsersDefinition *model.NewUsersDefinition) *CreateOp
Create adds new users to the specified account.
https://developers.docusign.com/docs/esign-rest-api/reference/users/users/create
SDK Method Users::create
func (*Service) CustomSettingsDelete ¶
func (s *Service) CustomSettingsDelete(userID string, customSettingsInformation *model.CustomSettingsInformation) *CustomSettingsDeleteOp
CustomSettingsDelete deletes custom user settings for a specified user.
https://developers.docusign.com/docs/esign-rest-api/reference/users/usercustomsettings/delete
SDK Method Users::deleteCustomSettings
func (*Service) CustomSettingsList ¶
func (s *Service) CustomSettingsList(userID string) *CustomSettingsListOp
CustomSettingsList retrieves the custom user settings for a specified user.
https://developers.docusign.com/docs/esign-rest-api/reference/users/usercustomsettings/list
SDK Method Users::listCustomSettings
func (*Service) CustomSettingsUpdate ¶
func (s *Service) CustomSettingsUpdate(userID string, customSettingsInformation *model.CustomSettingsInformation) *CustomSettingsUpdateOp
CustomSettingsUpdate adds or updates custom user settings for the specified user.
https://developers.docusign.com/docs/esign-rest-api/reference/users/usercustomsettings/update
SDK Method Users::updateCustomSettings
func (*Service) Delete ¶
func (s *Service) Delete(userInfoList *model.UserInfoList) *DeleteOp
Delete removes users account privileges.
https://developers.docusign.com/docs/esign-rest-api/reference/users/users/delete
SDK Method Users::delete
func (*Service) DeleteProfileImage ¶
func (s *Service) DeleteProfileImage(userID string) *DeleteProfileImageOp
DeleteProfileImage deletes the user profile image for the specified user.
https://developers.docusign.com/docs/esign-rest-api/reference/users/users/deleteprofileimage
SDK Method Users::deleteProfileImage
func (*Service) Get ¶
Get gets the user information for a specified user.
https://developers.docusign.com/docs/esign-rest-api/reference/users/users/get
SDK Method Users::getInformation
func (*Service) GetProfileImage ¶
func (s *Service) GetProfileImage(userID string) *GetProfileImageOp
GetProfileImage retrieves the user profile image for the specified user.
https://developers.docusign.com/docs/esign-rest-api/reference/users/users/getprofileimage
SDK Method Users::getProfileImage
func (*Service) GetSettings ¶
func (s *Service) GetSettings(userID string) *GetSettingsOp
GetSettings gets the user account settings for a specified user.
https://developers.docusign.com/docs/esign-rest-api/reference/users/users/getsettings
SDK Method Users::getSettings
func (*Service) List ¶
List retrieves the list of users for the specified account.
https://developers.docusign.com/docs/esign-rest-api/reference/users/users/list
SDK Method Users::list
func (*Service) ProfilesGet ¶
func (s *Service) ProfilesGet(userID string) *ProfilesGetOp
ProfilesGet retrieves the user profile for a specified user.
https://developers.docusign.com/docs/esign-rest-api/reference/users/userprofiles/get
SDK Method Users::getProfile
func (*Service) ProfilesUpdate ¶
func (s *Service) ProfilesUpdate(userID string, userProfile *model.UserProfile) *ProfilesUpdateOp
ProfilesUpdate updates the user profile information for the specified user.
https://developers.docusign.com/docs/esign-rest-api/reference/users/userprofiles/update
SDK Method Users::updateProfile
func (*Service) SignaturesCreate ¶
func (s *Service) SignaturesCreate(userID string, userSignaturesInformation *model.UserSignaturesInformation, uploads ...*esign.UploadFile) *SignaturesCreateOp
SignaturesCreate adds user Signature and initials images to a Signature. If any uploads[x].Reader is an io.ReadCloser(s), Do() will always close Reader.
https://developers.docusign.com/docs/esign-rest-api/reference/users/usersignatures/create
SDK Method Users::createSignatures
func (*Service) SignaturesDelete ¶
func (s *Service) SignaturesDelete(signatureID string, userID string) *SignaturesDeleteOp
SignaturesDelete removes removes signature information for the specified user.
https://developers.docusign.com/docs/esign-rest-api/reference/users/usersignatures/delete
SDK Method Users::deleteSignature
func (*Service) SignaturesDeleteImage ¶
func (s *Service) SignaturesDeleteImage(imageType string, signatureID string, userID string) *SignaturesDeleteImageOp
SignaturesDeleteImage deletes the user initials image or the user signature image for the specified user.
https://developers.docusign.com/docs/esign-rest-api/reference/users/usersignatures/deleteimage
SDK Method Users::deleteSignatureImage
func (*Service) SignaturesGet ¶
func (s *Service) SignaturesGet(signatureID string, userID string) *SignaturesGetOp
SignaturesGet gets the user signature information for the specified user.
https://developers.docusign.com/docs/esign-rest-api/reference/users/usersignatures/get
SDK Method Users::getSignature
func (*Service) SignaturesGetImage ¶
func (s *Service) SignaturesGetImage(imageType string, signatureID string, userID string) *SignaturesGetImageOp
SignaturesGetImage retrieves the user initials image or the user signature image for the specified user.
https://developers.docusign.com/docs/esign-rest-api/reference/users/usersignatures/getimage
SDK Method Users::getSignatureImage
func (*Service) SignaturesList ¶
func (s *Service) SignaturesList(userID string) *SignaturesListOp
SignaturesList retrieves a list of signature definitions for a user.
https://developers.docusign.com/docs/esign-rest-api/reference/users/usersignatures/list
SDK Method Users::listSignatures
func (*Service) SignaturesUpdate ¶
func (s *Service) SignaturesUpdate(signatureID string, userID string, userSignatureDefinition *model.UserSignatureDefinition) *SignaturesUpdateOp
SignaturesUpdate updates the user signature for a specified user.
https://developers.docusign.com/docs/esign-rest-api/reference/users/usersignatures/update
SDK Method Users::updateSignature
func (*Service) SignaturesUpdateImage ¶
func (s *Service) SignaturesUpdateImage(imageType string, signatureID string, userID string, media io.Reader, mimeType string) *SignaturesUpdateImageOp
SignaturesUpdateImage updates the user signature image or user initials image for the specified user. If media is an io.ReadCloser, Do() will close media.
https://developers.docusign.com/docs/esign-rest-api/reference/users/usersignatures/updateimage
SDK Method Users::updateSignatureImage
func (*Service) SignaturesUpdateList ¶
func (s *Service) SignaturesUpdateList(userID string, userSignaturesInformation *model.UserSignaturesInformation) *SignaturesUpdateListOp
SignaturesUpdateList adds/updates a user signature.
https://developers.docusign.com/docs/esign-rest-api/reference/users/usersignatures/updatelist
SDK Method Users::updateSignatures
func (*Service) Update ¶
func (s *Service) Update(userID string, userInformation *model.UserInformation) *UpdateOp
Update updates user information for the specified user.
https://developers.docusign.com/docs/esign-rest-api/reference/users/users/update
SDK Method Users::updateUser
func (*Service) UpdateList ¶
func (s *Service) UpdateList(userInformationList *model.UserInformationList) *UpdateListOp
UpdateList changes one or more users in the specified account.
https://developers.docusign.com/docs/esign-rest-api/reference/users/users/updatelist
SDK Method Users::updateUsers
func (*Service) UpdateProfileImage ¶
func (s *Service) UpdateProfileImage(userID string, media io.Reader, mimeType string) *UpdateProfileImageOp
UpdateProfileImage updates the user profile image for a specified user. If media is an io.ReadCloser, Do() will close media.
https://developers.docusign.com/docs/esign-rest-api/reference/users/users/updateprofileimage
SDK Method Users::updateProfileImage
func (*Service) UpdateSettings ¶
func (s *Service) UpdateSettings(userID string, userSettingsInformation *model.UserSettingsInformation) *UpdateSettingsOp
UpdateSettings updates the user account settings for a specified user.
https://developers.docusign.com/docs/esign-rest-api/reference/users/users/updatesettings
SDK Method Users::updateSettings
type SignaturesCreateOp ¶
SignaturesCreateOp implements DocuSign API SDK Users::createSignatures
func (*SignaturesCreateOp) Do ¶
func (op *SignaturesCreateOp) Do(ctx context.Context) (*model.UserSignaturesInformation, error)
Do executes the op. A nil context will return error.
type SignaturesDeleteImageOp ¶
SignaturesDeleteImageOp implements DocuSign API SDK Users::deleteSignatureImage
func (*SignaturesDeleteImageOp) Do ¶
func (op *SignaturesDeleteImageOp) Do(ctx context.Context) (*model.UserSignature, error)
Do executes the op. A nil context will return error.
type SignaturesDeleteOp ¶
SignaturesDeleteOp implements DocuSign API SDK Users::deleteSignature
type SignaturesGetImageOp ¶
SignaturesGetImageOp implements DocuSign API SDK Users::getSignatureImage
func (*SignaturesGetImageOp) IncludeChrome ¶
func (op *SignaturesGetImageOp) IncludeChrome() *SignaturesGetImageOp
IncludeChrome when **true,** the chrome (or frame containing the added line and identifier) is included with the signature image.
type SignaturesGetOp ¶
SignaturesGetOp implements DocuSign API SDK Users::getSignature
func (*SignaturesGetOp) Do ¶
func (op *SignaturesGetOp) Do(ctx context.Context) (*model.UserSignature, error)
Do executes the op. A nil context will return error.
type SignaturesListOp ¶
SignaturesListOp implements DocuSign API SDK Users::listSignatures
func (*SignaturesListOp) Do ¶
func (op *SignaturesListOp) Do(ctx context.Context) (*model.UserSignaturesInformation, error)
Do executes the op. A nil context will return error.
func (*SignaturesListOp) StampType ¶
func (op *SignaturesListOp) StampType(val string) *SignaturesListOp
StampType is the type of stamps to return. Valid values are:
- `signature`: Returns information about signature images only. This is the default value. - `stamp`: Returns information about eHanko and custom stamps only. - null
type SignaturesUpdateImageOp ¶
SignaturesUpdateImageOp implements DocuSign API SDK Users::updateSignatureImage
func (*SignaturesUpdateImageOp) Do ¶
func (op *SignaturesUpdateImageOp) Do(ctx context.Context) (*model.UserSignature, error)
Do executes the op. A nil context will return error.
func (*SignaturesUpdateImageOp) TransparentPng ¶
func (op *SignaturesUpdateImageOp) TransparentPng(val string) *SignaturesUpdateImageOp
TransparentPng set the call query parameter transparent_png
type SignaturesUpdateListOp ¶
SignaturesUpdateListOp implements DocuSign API SDK Users::updateSignatures
func (*SignaturesUpdateListOp) Do ¶
func (op *SignaturesUpdateListOp) Do(ctx context.Context) (*model.UserSignaturesInformation, error)
Do executes the op. A nil context will return error.
type SignaturesUpdateOp ¶
SignaturesUpdateOp implements DocuSign API SDK Users::updateSignature
func (*SignaturesUpdateOp) CloseExistingSignature ¶
func (op *SignaturesUpdateOp) CloseExistingSignature() *SignaturesUpdateOp
CloseExistingSignature when **true,** closes the current signature.
func (*SignaturesUpdateOp) Do ¶
func (op *SignaturesUpdateOp) Do(ctx context.Context) (*model.UserSignature, error)
Do executes the op. A nil context will return error.
type UpdateListOp ¶
UpdateListOp implements DocuSign API SDK Users::updateUsers
func (*UpdateListOp) AllowAllLanguages ¶ added in v0.10.0
func (op *UpdateListOp) AllowAllLanguages(val string) *UpdateListOp
AllowAllLanguages set the call query parameter allow_all_languages
func (*UpdateListOp) Do ¶
func (op *UpdateListOp) Do(ctx context.Context) (*model.UserInformationList, error)
Do executes the op. A nil context will return error.
type UpdateOp ¶
UpdateOp implements DocuSign API SDK Users::updateUser
func (*UpdateOp) AllowAllLanguages ¶ added in v0.10.0
AllowAllLanguages set the call query parameter allow_all_languages
type UpdateProfileImageOp ¶
UpdateProfileImageOp implements DocuSign API SDK Users::updateProfileImage
type UpdateSettingsOp ¶
UpdateSettingsOp implements DocuSign API SDK Users::updateSettings
func (*UpdateSettingsOp) AllowAllLanguages ¶ added in v0.10.0
func (op *UpdateSettingsOp) AllowAllLanguages(val string) *UpdateSettingsOp
AllowAllLanguages set the call query parameter allow_all_languages