EzmaxApi::Role - a Moose role for the eZmax API Definition (Full)
This API expose all the functionnalities for the eZmax and eZsign applications.
Automatically generated by the OpenAPI Generator project:
- API version: 1.2.0
- Package version: 1.2.0
- Generator version: 7.4.0
- Build package: org.openapitools.codegen.languages.PerlClientCodegen For more information, please visit https://www.ezmax.ca/en/contact
This role is the only component of the library that uses Moose. See EzmaxApi::ApiFactory for non-Moosey usage.
The Perl Generator in the OpenAPI Generator project builds a library of Perl modules to interact with a web service defined by a OpenAPI Specification. See below for how to build the library.
This module provides an interface to the generated library. All the classes, objects, and methods (well, not quite *all*, see below) are flattened into this role.
package MyApp;
use Moose;
with 'EzmaxApi::Role';
package main;
my $api = MyApp->new({ tokens => $tokens });
my $pet = $api->get_pet_by_id(pet_id => $pet_id);
The library consists of a set of API classes, one for each endpoint. These APIs implement the method calls available on each endpoint.
Additionally, there is a set of "object" classes, which represent the objects returned by and sent to the methods on the endpoints.
An API factory class is provided, which builds instances of each endpoint API.
This Moose role flattens all the methods from the endpoint APIs onto the consuming class. It also provides methods to retrieve the endpoint API objects, and the API factory object, should you need it.
For documentation of all these methods, see AUTOMATIC DOCUMENTATION below.
In the normal case, the OpenAPI Spec will describe what parameters are required and where to put them. You just need to supply the tokens.
my $tokens = {
# basic
username => $username,
password => $password,
# oauth
access_token => $oauth_token,
# keys
$some_key => { token => $token,
prefix => $prefix,
in => $in, # 'head||query',
},
$another => { token => $token,
prefix => $prefix,
in => $in, # 'head||query',
},
...,
};
my $api = MyApp->new({ tokens => $tokens });
Note these are all optional, as are prefix
and in
, and depend on the API
you are accessing. Usually prefix
and in
will be determined by the code generator from
the spec and you will not need to set them at run time. If not, in
will
default to 'head' and prefix
to the empty string.
The tokens will be placed in a LEzmaxApi::Configuration instance as follows, but you don't need to know about this.
-
$cfg->{username}
String. The username for basic auth.
-
$cfg->{password}
String. The password for basic auth.
-
$cfg->{api_key}
Hashref. Keyed on the name of each key (there can be multiple tokens).
$cfg->{api_key} = { secretKey => 'aaaabbbbccccdddd', anotherKey => '1111222233334444', };
-
$cfg->{api_key_prefix}
Hashref. Keyed on the name of each key (there can be multiple tokens). Note not all api keys require a prefix.
$cfg->{api_key_prefix} = { secretKey => 'string', anotherKey => 'same or some other string', };
-
$cfg->{access_token}
String. The OAuth access token.
The generated code has the base_url
already set as a default value. This method
returns the current value of base_url
.
Returns an API factory object. You probably won't need to call this directly.
$self->api_factory('Pet'); # returns a EzmaxApi::PetApi instance
$self->pet_api; # the same
Most of the methods on the API are delegated to individual endpoint API objects
(e.g. Pet API, Store API, User API etc). Where different endpoint APIs use the
same method name (e.g. new()
), these methods can't be delegated. So you need
to call $api->pet_api->new()
.
In principle, every API is susceptible to the presence of a few, random, undelegatable method names. In practice, because of the way method names are constructed, it's unlikely in general that any methods will be undelegatable, except for:
new()
class_documentation()
method_documentation()
To call these methods, you need to get a handle on the relevant object, either
by calling $api->foo_api
or by retrieving an object, e.g.
$api->get_pet_by_id(pet_id => $pet_id)
. They are class methods, so
you could also call them on class names.
See the homepage https://openapi-generator.tech
for full details.
But briefly, clone the git repository, build the codegen codebase, set up your build
config file, then run the API build script. You will need git, Java 7 or 8 and Apache
maven 3.0.3 or better already installed.
The config file should specify the project name for the generated library:
{"moduleName":"WWW::MyProjectName"}
Your library files will be built under WWW::MyProjectName
.
$ git clone https://github.com/openapitools/openapi-generator
$ cd openapi-generator
$ mvn package
$ java -jar modules/openapi-generator-cli/target/openapi-generator-cli.jar generate \
-i [URL or file path to JSON OpenAPI API spec] \
-g perl \
-c /path/to/config/file.json \
-o /path/to/output/folder
Bang, all done. Run the autodoc
script in the bin
directory to see the API
you just built.
You can print out a summary of the generated API by running the included
autodoc
script in the bin
directory of your generated library. A few
output formats are supported:
Usage: autodoc [OPTION]
-w wide format (default)
-n narrow format
-p POD format
-H HTML format
-m Markdown format
-h print this help message
-c your application class
The -c
option allows you to load and inspect your own application. A dummy
namespace is used if you don't supply your own class.
Additional documentation for each class and method may be provided by the OpenAPI
spec. If so, this is available via the class_documentation()
and
method_documentation()
methods on each generated object class, and the
method_documentation()
method on the endpoint API classes:
my $cmdoc = $api->pet_api->method_documentation->{$method_name};
my $odoc = $api->get_pet_by_id->(pet_id => $pet_id)->class_documentation;
my $omdoc = $api->get_pet_by_id->(pet_id => $pet_id)->method_documentation->{method_name};
Each of these calls returns a hashref with various useful pieces of information.
Use cpanm to install the module dependencies:
cpanm --local-lib=~/perl5 local::lib && eval $(perl -I ~/perl5/lib/perl5/ -Mlocal::lib)
cpanm --quiet --no-interactive Class::Accessor Test::Exception Test::More Log::Any LWP::UserAgent URI::Query Module::Runtime DateTime Module::Find Moose::Role JSON
To load the API packages:
use EzmaxApi::GlobalCustomerApi;
use EzmaxApi::GlobalEzmaxclientApi;
use EzmaxApi::GlobalEzmaxcustomerApi;
use EzmaxApi::ModuleEzsignApi;
use EzmaxApi::ModuleReportApi;
use EzmaxApi::ModuleUserApi;
use EzmaxApi::ObjectActivesessionApi;
use EzmaxApi::ObjectApikeyApi;
use EzmaxApi::ObjectAttachmentApi;
use EzmaxApi::ObjectBillingentityexternalApi;
use EzmaxApi::ObjectBillingentityinternalApi;
use EzmaxApi::ObjectBrandingApi;
use EzmaxApi::ObjectBuyercontractApi;
use EzmaxApi::ObjectClonehistoryApi;
use EzmaxApi::ObjectCommunicationApi;
use EzmaxApi::ObjectCompanyApi;
use EzmaxApi::ObjectCorsApi;
use EzmaxApi::ObjectCountryApi;
use EzmaxApi::ObjectCreditcardclientApi;
use EzmaxApi::ObjectCreditcardtypeApi;
use EzmaxApi::ObjectDepartmentApi;
use EzmaxApi::ObjectDiscussionApi;
use EzmaxApi::ObjectDiscussionmembershipApi;
use EzmaxApi::ObjectDiscussionmessageApi;
use EzmaxApi::ObjectElectronicfundstransferApi;
use EzmaxApi::ObjectEmailtypeApi;
use EzmaxApi::ObjectEzmaxinvoicingApi;
use EzmaxApi::ObjectEzmaxproductApi;
use EzmaxApi::ObjectEzsignbulksendApi;
use EzmaxApi::ObjectEzsignbulksenddocumentmappingApi;
use EzmaxApi::ObjectEzsignbulksendsignermappingApi;
use EzmaxApi::ObjectEzsignbulksendtransmissionApi;
use EzmaxApi::ObjectEzsigndiscussionApi;
use EzmaxApi::ObjectEzsigndocumentApi;
use EzmaxApi::ObjectEzsignfolderApi;
use EzmaxApi::ObjectEzsignfoldersignerassociationApi;
use EzmaxApi::ObjectEzsignfoldertypeApi;
use EzmaxApi::ObjectEzsignformfieldgroupApi;
use EzmaxApi::ObjectEzsignpageApi;
use EzmaxApi::ObjectEzsignsignatureApi;
use EzmaxApi::ObjectEzsignsignergroupApi;
use EzmaxApi::ObjectEzsignsignergroupmembershipApi;
use EzmaxApi::ObjectEzsignsigningreasonApi;
use EzmaxApi::ObjectEzsigntemplateApi;
use EzmaxApi::ObjectEzsigntemplatedocumentApi;
use EzmaxApi::ObjectEzsigntemplateformfieldgroupApi;
use EzmaxApi::ObjectEzsigntemplateglobalApi;
use EzmaxApi::ObjectEzsigntemplatepackageApi;
use EzmaxApi::ObjectEzsigntemplatepackagemembershipApi;
use EzmaxApi::ObjectEzsigntemplatepackagesignerApi;
use EzmaxApi::ObjectEzsigntemplatepackagesignermembershipApi;
use EzmaxApi::ObjectEzsigntemplatesignatureApi;
use EzmaxApi::ObjectEzsigntemplatesignerApi;
use EzmaxApi::ObjectEzsigntsarequirementApi;
use EzmaxApi::ObjectFontApi;
use EzmaxApi::ObjectFranchisebrokerApi;
use EzmaxApi::ObjectFranchiseofficeApi;
use EzmaxApi::ObjectFranchisereferalincomeApi;
use EzmaxApi::ObjectInscriptionApi;
use EzmaxApi::ObjectInscriptionnotauthenticatedApi;
use EzmaxApi::ObjectInscriptiontempApi;
use EzmaxApi::ObjectInvoiceApi;
use EzmaxApi::ObjectLanguageApi;
use EzmaxApi::ObjectModuleApi;
use EzmaxApi::ObjectModulegroupApi;
use EzmaxApi::ObjectNotificationsectionApi;
use EzmaxApi::ObjectNotificationtestApi;
use EzmaxApi::ObjectOtherincomeApi;
use EzmaxApi::ObjectPaymenttermApi;
use EzmaxApi::ObjectPeriodApi;
use EzmaxApi::ObjectPermissionApi;
use EzmaxApi::ObjectPhonetypeApi;
use EzmaxApi::ObjectProvinceApi;
use EzmaxApi::ObjectRejectedoffertopurchaseApi;
use EzmaxApi::ObjectSecretquestionApi;
use EzmaxApi::ObjectSessionhistoryApi;
use EzmaxApi::ObjectSignatureApi;
use EzmaxApi::ObjectSubnetApi;
use EzmaxApi::ObjectSystemconfigurationApi;
use EzmaxApi::ObjectTaxassignmentApi;
use EzmaxApi::ObjectTimezoneApi;
use EzmaxApi::ObjectUserApi;
use EzmaxApi::ObjectUsergroupApi;
use EzmaxApi::ObjectUsergroupdelegationApi;
use EzmaxApi::ObjectUsergroupexternalApi;
use EzmaxApi::ObjectUsergroupmembershipApi;
use EzmaxApi::ObjectUserlogintypeApi;
use EzmaxApi::ObjectUserstagedApi;
use EzmaxApi::ObjectVariableexpenseApi;
use EzmaxApi::ObjectVersionhistoryApi;
use EzmaxApi::ObjectWebhookApi;
use EzmaxApi::ScimGroupsApi;
use EzmaxApi::ScimServiceProviderConfigApi;
use EzmaxApi::ScimUsersApi;
To load the models:
use EzmaxApi::Object::ActivesessionGetCurrentV1Response;
use EzmaxApi::Object::ActivesessionGetCurrentV1ResponseMPayload;
use EzmaxApi::Object::ActivesessionGetListV1Response;
use EzmaxApi::Object::ActivesessionGetListV1ResponseMPayload;
use EzmaxApi::Object::ActivesessionListElement;
use EzmaxApi::Object::ActivesessionResponse;
use EzmaxApi::Object::ActivesessionResponseCompound;
use EzmaxApi::Object::ActivesessionResponseCompoundApikey;
use EzmaxApi::Object::ActivesessionResponseCompoundUser;
use EzmaxApi::Object::AddressRequest;
use EzmaxApi::Object::AddressRequestCompound;
use EzmaxApi::Object::ApikeyCreateObjectV2Request;
use EzmaxApi::Object::ApikeyCreateObjectV2Response;
use EzmaxApi::Object::ApikeyCreateObjectV2ResponseMPayload;
use EzmaxApi::Object::ApikeyEditObjectV1Request;
use EzmaxApi::Object::ApikeyEditObjectV1Response;
use EzmaxApi::Object::ApikeyEditPermissionsV1Request;
use EzmaxApi::Object::ApikeyEditPermissionsV1Response;
use EzmaxApi::Object::ApikeyEditPermissionsV1ResponseMPayload;
use EzmaxApi::Object::ApikeyGetCorsV1Response;
use EzmaxApi::Object::ApikeyGetCorsV1ResponseMPayload;
use EzmaxApi::Object::ApikeyGetListV1Response;
use EzmaxApi::Object::ApikeyGetListV1ResponseMPayload;
use EzmaxApi::Object::ApikeyGetObjectV2Response;
use EzmaxApi::Object::ApikeyGetObjectV2ResponseMPayload;
use EzmaxApi::Object::ApikeyGetPermissionsV1Response;
use EzmaxApi::Object::ApikeyGetPermissionsV1ResponseMPayload;
use EzmaxApi::Object::ApikeyGetSubnetsV1Response;
use EzmaxApi::Object::ApikeyGetSubnetsV1ResponseMPayload;
use EzmaxApi::Object::ApikeyListElement;
use EzmaxApi::Object::ApikeyRegenerateV1Request;
use EzmaxApi::Object::ApikeyRegenerateV1Response;
use EzmaxApi::Object::ApikeyRegenerateV1ResponseMPayload;
use EzmaxApi::Object::ApikeyRequest;
use EzmaxApi::Object::ApikeyRequestCompound;
use EzmaxApi::Object::ApikeyResponse;
use EzmaxApi::Object::ApikeyResponseCompound;
use EzmaxApi::Object::AttachmentGetAttachmentlogsV1Response;
use EzmaxApi::Object::AttachmentGetAttachmentlogsV1ResponseMPayload;
use EzmaxApi::Object::AttachmentGetDownloadUrlV1Response;
use EzmaxApi::Object::AttachmentGetDownloadUrlV1ResponseMPayload;
use EzmaxApi::Object::AttachmentResponse;
use EzmaxApi::Object::AttachmentResponseCompound;
use EzmaxApi::Object::AttachmentlogResponse;
use EzmaxApi::Object::AttachmentlogResponseCompound;
use EzmaxApi::Object::AttemptResponse;
use EzmaxApi::Object::AttemptResponseCompound;
use EzmaxApi::Object::BillingentityexternalAutocompleteElementResponse;
use EzmaxApi::Object::BillingentityexternalGetAutocompleteV2Response;
use EzmaxApi::Object::BillingentityexternalGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::BillingentityinternalAutocompleteElementResponse;
use EzmaxApi::Object::BillingentityinternalCreateObjectV1Request;
use EzmaxApi::Object::BillingentityinternalCreateObjectV1Response;
use EzmaxApi::Object::BillingentityinternalCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::BillingentityinternalEditObjectV1Request;
use EzmaxApi::Object::BillingentityinternalEditObjectV1Response;
use EzmaxApi::Object::BillingentityinternalGetAutocompleteV2Response;
use EzmaxApi::Object::BillingentityinternalGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::BillingentityinternalGetListV1Response;
use EzmaxApi::Object::BillingentityinternalGetListV1ResponseMPayload;
use EzmaxApi::Object::BillingentityinternalGetObjectV2Response;
use EzmaxApi::Object::BillingentityinternalGetObjectV2ResponseMPayload;
use EzmaxApi::Object::BillingentityinternalListElement;
use EzmaxApi::Object::BillingentityinternalRequest;
use EzmaxApi::Object::BillingentityinternalRequestCompound;
use EzmaxApi::Object::BillingentityinternalResponse;
use EzmaxApi::Object::BillingentityinternalResponseCompound;
use EzmaxApi::Object::BillingentityinternalproductRequest;
use EzmaxApi::Object::BillingentityinternalproductRequestCompound;
use EzmaxApi::Object::BillingentityinternalproductResponse;
use EzmaxApi::Object::BillingentityinternalproductResponseCompound;
use EzmaxApi::Object::BrandingAutocompleteElementResponse;
use EzmaxApi::Object::BrandingCreateObjectV1Request;
use EzmaxApi::Object::BrandingCreateObjectV1Response;
use EzmaxApi::Object::BrandingCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::BrandingEditObjectV1Request;
use EzmaxApi::Object::BrandingEditObjectV1Response;
use EzmaxApi::Object::BrandingGetAutocompleteV2Response;
use EzmaxApi::Object::BrandingGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::BrandingGetListV1Response;
use EzmaxApi::Object::BrandingGetListV1ResponseMPayload;
use EzmaxApi::Object::BrandingGetObjectV2Response;
use EzmaxApi::Object::BrandingGetObjectV2ResponseMPayload;
use EzmaxApi::Object::BrandingListElement;
use EzmaxApi::Object::BrandingRequest;
use EzmaxApi::Object::BrandingRequestCompound;
use EzmaxApi::Object::BrandingResponse;
use EzmaxApi::Object::BrandingResponseCompound;
use EzmaxApi::Object::BuyercontractGetCommunicationListV1Response;
use EzmaxApi::Object::BuyercontractGetCommunicationListV1ResponseMPayload;
use EzmaxApi::Object::ClonehistoryGetListV1Response;
use EzmaxApi::Object::ClonehistoryGetListV1ResponseMPayload;
use EzmaxApi::Object::ClonehistoryListElement;
use EzmaxApi::Object::CommonAudit;
use EzmaxApi::Object::CommonAuditdetail;
use EzmaxApi::Object::CommonFile;
use EzmaxApi::Object::CommonGetListV1ResponseMPayload;
use EzmaxApi::Object::CommonGetReportV1Response;
use EzmaxApi::Object::CommonGetReportV1ResponseMPayload;
use EzmaxApi::Object::CommonReport;
use EzmaxApi::Object::CommonReportcell;
use EzmaxApi::Object::CommonReportcellstyle;
use EzmaxApi::Object::CommonReportcolumn;
use EzmaxApi::Object::CommonReportgroup;
use EzmaxApi::Object::CommonReportrow;
use EzmaxApi::Object::CommonReportsection;
use EzmaxApi::Object::CommonReportsubsection;
use EzmaxApi::Object::CommonReportsubsectionpart;
use EzmaxApi::Object::CommonResponse;
use EzmaxApi::Object::CommonResponseError;
use EzmaxApi::Object::CommonResponseErrorEzsignformValidation;
use EzmaxApi::Object::CommonResponseErrorSTemporaryFileUrl;
use EzmaxApi::Object::CommonResponseErrorTooManyRequests;
use EzmaxApi::Object::CommonResponseFilter;
use EzmaxApi::Object::CommonResponseGetList;
use EzmaxApi::Object::CommonResponseObjDebug;
use EzmaxApi::Object::CommonResponseObjDebugPayload;
use EzmaxApi::Object::CommonResponseObjDebugPayloadGetList;
use EzmaxApi::Object::CommonResponseObjSQLQuery;
use EzmaxApi::Object::CommonResponseRedirectSSecretquestionTextX;
use EzmaxApi::Object::CommonResponseWarning;
use EzmaxApi::Object::CommonWebhook;
use EzmaxApi::Object::CommunicationCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::CommunicationRequest;
use EzmaxApi::Object::CommunicationRequestCompound;
use EzmaxApi::Object::CommunicationSendV1Request;
use EzmaxApi::Object::CommunicationSendV1Response;
use EzmaxApi::Object::CommunicationattachmentRequest;
use EzmaxApi::Object::CommunicationattachmentRequestCompound;
use EzmaxApi::Object::CommunicationexternalrecipientRequest;
use EzmaxApi::Object::CommunicationexternalrecipientRequestCompound;
use EzmaxApi::Object::CommunicationrecipientRequest;
use EzmaxApi::Object::CommunicationrecipientRequestCompound;
use EzmaxApi::Object::CommunicationreferenceRequest;
use EzmaxApi::Object::CommunicationreferenceRequestCompound;
use EzmaxApi::Object::CompanyAutocompleteElementResponse;
use EzmaxApi::Object::CompanyGetAutocompleteV2Response;
use EzmaxApi::Object::CompanyGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::ComputedECommunicationDirection;
use EzmaxApi::Object::ComputedEEzsigndocumentSteptype;
use EzmaxApi::Object::ContactRequest;
use EzmaxApi::Object::ContactRequestCompound;
use EzmaxApi::Object::ContactinformationsRequest;
use EzmaxApi::Object::ContactinformationsRequestCompound;
use EzmaxApi::Object::CorsCreateObjectV1Request;
use EzmaxApi::Object::CorsCreateObjectV1Response;
use EzmaxApi::Object::CorsCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::CorsDeleteObjectV1Response;
use EzmaxApi::Object::CorsEditObjectV1Request;
use EzmaxApi::Object::CorsEditObjectV1Response;
use EzmaxApi::Object::CorsGetObjectV2Response;
use EzmaxApi::Object::CorsGetObjectV2ResponseMPayload;
use EzmaxApi::Object::CorsRequest;
use EzmaxApi::Object::CorsRequestCompound;
use EzmaxApi::Object::CorsResponse;
use EzmaxApi::Object::CorsResponseCompound;
use EzmaxApi::Object::CountryAutocompleteElementResponse;
use EzmaxApi::Object::CountryGetAutocompleteV2Response;
use EzmaxApi::Object::CountryGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::CreditcardclientAutocompleteElementResponse;
use EzmaxApi::Object::CreditcardclientCreateObjectV1Request;
use EzmaxApi::Object::CreditcardclientCreateObjectV1Response;
use EzmaxApi::Object::CreditcardclientCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::CreditcardclientDeleteObjectV1Response;
use EzmaxApi::Object::CreditcardclientEditObjectV1Request;
use EzmaxApi::Object::CreditcardclientEditObjectV1Response;
use EzmaxApi::Object::CreditcardclientGetAutocompleteV2Response;
use EzmaxApi::Object::CreditcardclientGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::CreditcardclientGetListV1Response;
use EzmaxApi::Object::CreditcardclientGetListV1ResponseMPayload;
use EzmaxApi::Object::CreditcardclientGetObjectV2Response;
use EzmaxApi::Object::CreditcardclientGetObjectV2ResponseMPayload;
use EzmaxApi::Object::CreditcardclientListElement;
use EzmaxApi::Object::CreditcardclientRequest;
use EzmaxApi::Object::CreditcardclientRequestCompound;
use EzmaxApi::Object::CreditcardclientResponse;
use EzmaxApi::Object::CreditcardclientResponseCompound;
use EzmaxApi::Object::CreditcarddetailRequest;
use EzmaxApi::Object::CreditcarddetailResponse;
use EzmaxApi::Object::CreditcarddetailResponseCompound;
use EzmaxApi::Object::CreditcardtypeAutocompleteElementResponse;
use EzmaxApi::Object::CreditcardtypeGetAutocompleteV2Response;
use EzmaxApi::Object::CreditcardtypeGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::CustomAttachmentResponse;
use EzmaxApi::Object::CustomAttachmentdocumenttypeResponse;
use EzmaxApi::Object::CustomCommunicationListElementResponse;
use EzmaxApi::Object::CustomCommunicationattachmentRequest;
use EzmaxApi::Object::CustomCommunicationrecipientsgroupResponse;
use EzmaxApi::Object::CustomCommunicationrecipientsrecipientResponse;
use EzmaxApi::Object::CustomCommunicationsenderRequest;
use EzmaxApi::Object::CustomCommunicationsenderResponse;
use EzmaxApi::Object::CustomContactNameResponse;
use EzmaxApi::Object::CustomCreateEzsignelementsPositionedByWordRequest;
use EzmaxApi::Object::CustomCreditcardtransactionResponse;
use EzmaxApi::Object::CustomDiscussionconfigurationResponse;
use EzmaxApi::Object::CustomDropdownElementRequest;
use EzmaxApi::Object::CustomDropdownElementRequestCompound;
use EzmaxApi::Object::CustomDropdownElementResponse;
use EzmaxApi::Object::CustomDropdownElementResponseCompound;
use EzmaxApi::Object::CustomEzmaxinvoicingEzsigndocumentResponse;
use EzmaxApi::Object::CustomEzmaxinvoicingEzsignfolderResponse;
use EzmaxApi::Object::CustomEzmaxpricingResponse;
use EzmaxApi::Object::CustomEzsigndocumentEzsignsignaturesAutomaticResponse;
use EzmaxApi::Object::CustomEzsignfolderEzsignsignaturesAutomaticResponse;
use EzmaxApi::Object::CustomEzsignfoldersignerassociationActionableElementResponse;
use EzmaxApi::Object::CustomEzsignfoldersignerassociationstatusResponse;
use EzmaxApi::Object::CustomEzsignfoldertransmissionResponse;
use EzmaxApi::Object::CustomEzsignfoldertransmissionSignerResponse;
use EzmaxApi::Object::CustomEzsignfoldertypeResponse;
use EzmaxApi::Object::CustomEzsignformfieldRequest;
use EzmaxApi::Object::CustomEzsignformfielderrorResponse;
use EzmaxApi::Object::CustomEzsignformfielderrortestResponse;
use EzmaxApi::Object::CustomEzsignformfieldgroupCreateEzsignelementsPositionedByWordRequest;
use EzmaxApi::Object::CustomEzsignformfieldgroupRequest;
use EzmaxApi::Object::CustomEzsignsignatureCreateEzsignelementsPositionedByWordRequest;
use EzmaxApi::Object::CustomEzsignsignatureEzsignsignaturesAutomaticResponse;
use EzmaxApi::Object::CustomEzsignsignaturestatusResponse;
use EzmaxApi::Object::CustomFormDataDocumentResponse;
use EzmaxApi::Object::CustomFormDataEzsignformfieldResponse;
use EzmaxApi::Object::CustomFormDataEzsignformfieldgroupResponse;
use EzmaxApi::Object::CustomFormDataSignerResponse;
use EzmaxApi::Object::CustomFormsDataFolderResponse;
use EzmaxApi::Object::CustomImportEzsigntemplatepackageRelationRequest;
use EzmaxApi::Object::CustomNotificationsubsectiongetnotificationtestsResponse;
use EzmaxApi::Object::CustomNotificationtestgetnotificationtestsResponse;
use EzmaxApi::Object::CustomUserResponse;
use EzmaxApi::Object::CustomWebhookResponse;
use EzmaxApi::Object::CustomWebhooklogResponse;
use EzmaxApi::Object::CustomWordPositionOccurenceResponse;
use EzmaxApi::Object::CustomWordPositionWordResponse;
use EzmaxApi::Object::DepartmentAutocompleteElementResponse;
use EzmaxApi::Object::DepartmentGetAutocompleteV2Response;
use EzmaxApi::Object::DepartmentGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::DiscussionCreateObjectV1Request;
use EzmaxApi::Object::DiscussionCreateObjectV1Response;
use EzmaxApi::Object::DiscussionCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::DiscussionDeleteObjectV1Response;
use EzmaxApi::Object::DiscussionGetObjectV2Response;
use EzmaxApi::Object::DiscussionGetObjectV2ResponseMPayload;
use EzmaxApi::Object::DiscussionPatchObjectV1Request;
use EzmaxApi::Object::DiscussionPatchObjectV1Response;
use EzmaxApi::Object::DiscussionRequest;
use EzmaxApi::Object::DiscussionRequestCompound;
use EzmaxApi::Object::DiscussionRequestPatch;
use EzmaxApi::Object::DiscussionResponse;
use EzmaxApi::Object::DiscussionResponseCompound;
use EzmaxApi::Object::DiscussionUpdateDiscussionreadstatusV1Request;
use EzmaxApi::Object::DiscussionUpdateDiscussionreadstatusV1Response;
use EzmaxApi::Object::DiscussionmembershipCreateObjectV1Request;
use EzmaxApi::Object::DiscussionmembershipCreateObjectV1Response;
use EzmaxApi::Object::DiscussionmembershipCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::DiscussionmembershipDeleteObjectV1Response;
use EzmaxApi::Object::DiscussionmembershipRequest;
use EzmaxApi::Object::DiscussionmembershipRequestCompound;
use EzmaxApi::Object::DiscussionmembershipResponse;
use EzmaxApi::Object::DiscussionmembershipResponseCompound;
use EzmaxApi::Object::DiscussionmessageCreateObjectV1Request;
use EzmaxApi::Object::DiscussionmessageCreateObjectV1Response;
use EzmaxApi::Object::DiscussionmessageCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::DiscussionmessageDeleteObjectV1Response;
use EzmaxApi::Object::DiscussionmessagePatchObjectV1Request;
use EzmaxApi::Object::DiscussionmessagePatchObjectV1Response;
use EzmaxApi::Object::DiscussionmessageRequest;
use EzmaxApi::Object::DiscussionmessageRequestCompound;
use EzmaxApi::Object::DiscussionmessageRequestPatch;
use EzmaxApi::Object::DiscussionmessageResponse;
use EzmaxApi::Object::DiscussionmessageResponseCompound;
use EzmaxApi::Object::ElectronicfundstransferGetCommunicationListV1Response;
use EzmaxApi::Object::ElectronicfundstransferGetCommunicationListV1ResponseMPayload;
use EzmaxApi::Object::EmailRequest;
use EzmaxApi::Object::EmailRequestCompound;
use EzmaxApi::Object::EmailResponse;
use EzmaxApi::Object::EmailResponseCompound;
use EzmaxApi::Object::EmailtypeAutocompleteElementResponse;
use EzmaxApi::Object::EmailtypeGetAutocompleteV2Response;
use EzmaxApi::Object::EmailtypeGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::EnumFontunderline;
use EzmaxApi::Object::EnumFontweight;
use EzmaxApi::Object::EnumHorizontalalignment;
use EzmaxApi::Object::EnumTextvalidation;
use EzmaxApi::Object::EnumVerticalalignment;
use EzmaxApi::Object::EzmaxinvoicingAutocompleteElementResponse;
use EzmaxApi::Object::EzmaxinvoicingGetAutocompleteV2Response;
use EzmaxApi::Object::EzmaxinvoicingGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::EzmaxinvoicingGetObjectV2Response;
use EzmaxApi::Object::EzmaxinvoicingGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzmaxinvoicingGetProvisionalV1Response;
use EzmaxApi::Object::EzmaxinvoicingGetProvisionalV1ResponseMPayload;
use EzmaxApi::Object::EzmaxinvoicingResponse;
use EzmaxApi::Object::EzmaxinvoicingResponseCompound;
use EzmaxApi::Object::EzmaxinvoicingagentResponse;
use EzmaxApi::Object::EzmaxinvoicingagentResponseCompound;
use EzmaxApi::Object::EzmaxinvoicingcommissionResponse;
use EzmaxApi::Object::EzmaxinvoicingcommissionResponseCompound;
use EzmaxApi::Object::EzmaxinvoicingcontractResponse;
use EzmaxApi::Object::EzmaxinvoicingcontractResponseCompound;
use EzmaxApi::Object::EzmaxinvoicingsummaryexternalResponse;
use EzmaxApi::Object::EzmaxinvoicingsummaryexternalResponseCompound;
use EzmaxApi::Object::EzmaxinvoicingsummaryexternaldetailResponse;
use EzmaxApi::Object::EzmaxinvoicingsummaryexternaldetailResponseCompound;
use EzmaxApi::Object::EzmaxinvoicingsummaryglobalResponse;
use EzmaxApi::Object::EzmaxinvoicingsummaryglobalResponseCompound;
use EzmaxApi::Object::EzmaxinvoicingsummaryinternalResponse;
use EzmaxApi::Object::EzmaxinvoicingsummaryinternalResponseCompound;
use EzmaxApi::Object::EzmaxinvoicingsummaryinternaldetailResponse;
use EzmaxApi::Object::EzmaxinvoicingsummaryinternaldetailResponseCompound;
use EzmaxApi::Object::EzmaxinvoicinguserResponse;
use EzmaxApi::Object::EzmaxinvoicinguserResponseCompound;
use EzmaxApi::Object::EzmaxproductAutocompleteElementResponse;
use EzmaxApi::Object::EzmaxproductGetAutocompleteV2Response;
use EzmaxApi::Object::EzmaxproductGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::EzsignSuggestSignersV1Response;
use EzmaxApi::Object::EzsignSuggestSignersV1ResponseMPayload;
use EzmaxApi::Object::EzsignSuggestTemplatesV1Response;
use EzmaxApi::Object::EzsignSuggestTemplatesV1ResponseMPayload;
use EzmaxApi::Object::EzsignannotationResponse;
use EzmaxApi::Object::EzsignannotationResponseCompound;
use EzmaxApi::Object::EzsignbulksendCreateEzsignbulksendtransmissionV1Request;
use EzmaxApi::Object::EzsignbulksendCreateEzsignbulksendtransmissionV1Response;
use EzmaxApi::Object::EzsignbulksendCreateEzsignbulksendtransmissionV1ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendCreateObjectV1Request;
use EzmaxApi::Object::EzsignbulksendCreateObjectV1Response;
use EzmaxApi::Object::EzsignbulksendCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendDeleteObjectV1Response;
use EzmaxApi::Object::EzsignbulksendEditObjectV1Request;
use EzmaxApi::Object::EzsignbulksendEditObjectV1Response;
use EzmaxApi::Object::EzsignbulksendGetEzsignbulksendtransmissionsV1Response;
use EzmaxApi::Object::EzsignbulksendGetEzsignbulksendtransmissionsV1ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendGetEzsignsignaturesAutomaticV1Response;
use EzmaxApi::Object::EzsignbulksendGetEzsignsignaturesAutomaticV1ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendGetFormsDataV1Response;
use EzmaxApi::Object::EzsignbulksendGetFormsDataV1ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendGetListV1Response;
use EzmaxApi::Object::EzsignbulksendGetListV1ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendGetObjectV2Response;
use EzmaxApi::Object::EzsignbulksendGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendListElement;
use EzmaxApi::Object::EzsignbulksendReorderV1Request;
use EzmaxApi::Object::EzsignbulksendReorderV1Response;
use EzmaxApi::Object::EzsignbulksendRequest;
use EzmaxApi::Object::EzsignbulksendRequestCompound;
use EzmaxApi::Object::EzsignbulksendResponse;
use EzmaxApi::Object::EzsignbulksendResponseCompound;
use EzmaxApi::Object::EzsignbulksenddocumentmappingCreateObjectV1Request;
use EzmaxApi::Object::EzsignbulksenddocumentmappingCreateObjectV1Response;
use EzmaxApi::Object::EzsignbulksenddocumentmappingCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignbulksenddocumentmappingDeleteObjectV1Response;
use EzmaxApi::Object::EzsignbulksenddocumentmappingGetObjectV2Response;
use EzmaxApi::Object::EzsignbulksenddocumentmappingGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignbulksenddocumentmappingRequest;
use EzmaxApi::Object::EzsignbulksenddocumentmappingRequestCompound;
use EzmaxApi::Object::EzsignbulksenddocumentmappingResponse;
use EzmaxApi::Object::EzsignbulksenddocumentmappingResponseCompound;
use EzmaxApi::Object::EzsignbulksendsignermappingCreateObjectV1Request;
use EzmaxApi::Object::EzsignbulksendsignermappingCreateObjectV1Response;
use EzmaxApi::Object::EzsignbulksendsignermappingCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendsignermappingDeleteObjectV1Response;
use EzmaxApi::Object::EzsignbulksendsignermappingGetObjectV2Response;
use EzmaxApi::Object::EzsignbulksendsignermappingGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendsignermappingRequest;
use EzmaxApi::Object::EzsignbulksendsignermappingRequestCompound;
use EzmaxApi::Object::EzsignbulksendsignermappingResponse;
use EzmaxApi::Object::EzsignbulksendsignermappingResponseCompound;
use EzmaxApi::Object::EzsignbulksendtransmissionGetEzsignsignaturesAutomaticV1Response;
use EzmaxApi::Object::EzsignbulksendtransmissionGetEzsignsignaturesAutomaticV1ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendtransmissionGetFormsDataV1Response;
use EzmaxApi::Object::EzsignbulksendtransmissionGetFormsDataV1ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendtransmissionGetObjectV2Response;
use EzmaxApi::Object::EzsignbulksendtransmissionGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendtransmissionResponse;
use EzmaxApi::Object::EzsignbulksendtransmissionResponseCompound;
use EzmaxApi::Object::EzsigndiscussionCreateObjectV1Request;
use EzmaxApi::Object::EzsigndiscussionCreateObjectV1Response;
use EzmaxApi::Object::EzsigndiscussionCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigndiscussionDeleteObjectV1Response;
use EzmaxApi::Object::EzsigndiscussionGetObjectV2Response;
use EzmaxApi::Object::EzsigndiscussionGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigndiscussionRequest;
use EzmaxApi::Object::EzsigndiscussionRequestCompound;
use EzmaxApi::Object::EzsigndiscussionResponse;
use EzmaxApi::Object::EzsigndiscussionResponseCompound;
use EzmaxApi::Object::EzsigndocumentApplyEzsigntemplateV1Request;
use EzmaxApi::Object::EzsigndocumentApplyEzsigntemplateV1Response;
use EzmaxApi::Object::EzsigndocumentApplyEzsigntemplateV2Request;
use EzmaxApi::Object::EzsigndocumentApplyEzsigntemplateV2Response;
use EzmaxApi::Object::EzsigndocumentApplyEzsigntemplateglobalV1Request;
use EzmaxApi::Object::EzsigndocumentApplyEzsigntemplateglobalV1Response;
use EzmaxApi::Object::EzsigndocumentCreateEzsignelementsPositionedByWordV1Request;
use EzmaxApi::Object::EzsigndocumentCreateEzsignelementsPositionedByWordV1Response;
use EzmaxApi::Object::EzsigndocumentCreateEzsignelementsPositionedByWordV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentCreateObjectV1Request;
use EzmaxApi::Object::EzsigndocumentCreateObjectV1Response;
use EzmaxApi::Object::EzsigndocumentCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentCreateObjectV2Request;
use EzmaxApi::Object::EzsigndocumentCreateObjectV2Response;
use EzmaxApi::Object::EzsigndocumentCreateObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentDeclineToSignV1Request;
use EzmaxApi::Object::EzsigndocumentDeclineToSignV1Response;
use EzmaxApi::Object::EzsigndocumentDeleteObjectV1Response;
use EzmaxApi::Object::EzsigndocumentEditEzsignformfieldgroupsV1Request;
use EzmaxApi::Object::EzsigndocumentEditEzsignformfieldgroupsV1Response;
use EzmaxApi::Object::EzsigndocumentEditEzsignformfieldgroupsV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentEditEzsignsignaturesV1Request;
use EzmaxApi::Object::EzsigndocumentEditEzsignsignaturesV1Response;
use EzmaxApi::Object::EzsigndocumentEditEzsignsignaturesV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentEndPrematurelyV1Response;
use EzmaxApi::Object::EzsigndocumentFlattenV1Response;
use EzmaxApi::Object::EzsigndocumentGetActionableElementsV1Response;
use EzmaxApi::Object::EzsigndocumentGetActionableElementsV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetAttachmentsV1Response;
use EzmaxApi::Object::EzsigndocumentGetAttachmentsV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetCompletedElementsV1Response;
use EzmaxApi::Object::EzsigndocumentGetCompletedElementsV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetDownloadUrlV1Response;
use EzmaxApi::Object::EzsigndocumentGetDownloadUrlV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetEzsignannotationsV1Response;
use EzmaxApi::Object::EzsigndocumentGetEzsignannotationsV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetEzsigndiscussionsV1Response;
use EzmaxApi::Object::EzsigndocumentGetEzsigndiscussionsV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetEzsignformfieldgroupsV1Response;
use EzmaxApi::Object::EzsigndocumentGetEzsignformfieldgroupsV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetEzsignpagesV1Response;
use EzmaxApi::Object::EzsigndocumentGetEzsignpagesV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetEzsignsignaturesAutomaticV1Response;
use EzmaxApi::Object::EzsigndocumentGetEzsignsignaturesAutomaticV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetEzsignsignaturesV1Response;
use EzmaxApi::Object::EzsigndocumentGetEzsignsignaturesV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetFormDataV1Response;
use EzmaxApi::Object::EzsigndocumentGetFormDataV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetObjectV1Response;
use EzmaxApi::Object::EzsigndocumentGetObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetObjectV2Response;
use EzmaxApi::Object::EzsigndocumentGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetTemporaryProofV1Response;
use EzmaxApi::Object::EzsigndocumentGetTemporaryProofV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetWordsPositionsV1Request;
use EzmaxApi::Object::EzsigndocumentGetWordsPositionsV1Response;
use EzmaxApi::Object::EzsigndocumentPatchObjectV1Request;
use EzmaxApi::Object::EzsigndocumentPatchObjectV1Response;
use EzmaxApi::Object::EzsigndocumentRequest;
use EzmaxApi::Object::EzsigndocumentRequestCompound;
use EzmaxApi::Object::EzsigndocumentRequestPatch;
use EzmaxApi::Object::EzsigndocumentResponse;
use EzmaxApi::Object::EzsigndocumentResponseCompound;
use EzmaxApi::Object::EzsigndocumentSubmitEzsignformV1Request;
use EzmaxApi::Object::EzsigndocumentSubmitEzsignformV1Response;
use EzmaxApi::Object::EzsigndocumentUnsendV1Response;
use EzmaxApi::Object::EzsigndocumentlogResponse;
use EzmaxApi::Object::EzsigndocumentlogResponseCompound;
use EzmaxApi::Object::EzsignelementdependencyRequest;
use EzmaxApi::Object::EzsignelementdependencyRequestCompound;
use EzmaxApi::Object::EzsignelementdependencyResponse;
use EzmaxApi::Object::EzsignelementdependencyResponseCompound;
use EzmaxApi::Object::EzsignfolderArchiveV1Response;
use EzmaxApi::Object::EzsignfolderBatchDownloadV1Request;
use EzmaxApi::Object::EzsignfolderCreateObjectV1Request;
use EzmaxApi::Object::EzsignfolderCreateObjectV1Response;
use EzmaxApi::Object::EzsignfolderCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderCreateObjectV2Request;
use EzmaxApi::Object::EzsignfolderCreateObjectV2Response;
use EzmaxApi::Object::EzsignfolderCreateObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignfolderDeleteObjectV1Response;
use EzmaxApi::Object::EzsignfolderDisposeEzsignfoldersV1Request;
use EzmaxApi::Object::EzsignfolderDisposeEzsignfoldersV1Response;
use EzmaxApi::Object::EzsignfolderDisposeV1Response;
use EzmaxApi::Object::EzsignfolderEditObjectV1Request;
use EzmaxApi::Object::EzsignfolderEditObjectV1Response;
use EzmaxApi::Object::EzsignfolderEndPrematurelyV1Response;
use EzmaxApi::Object::EzsignfolderGetActionableElementsV1Response;
use EzmaxApi::Object::EzsignfolderGetActionableElementsV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetAttachmentCountV1Response;
use EzmaxApi::Object::EzsignfolderGetAttachmentCountV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetAttachmentsV1Response;
use EzmaxApi::Object::EzsignfolderGetAttachmentsV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetCommunicationCountV1Response;
use EzmaxApi::Object::EzsignfolderGetCommunicationCountV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetCommunicationListV1Response;
use EzmaxApi::Object::EzsignfolderGetCommunicationListV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetCommunicationrecipientsV1Response;
use EzmaxApi::Object::EzsignfolderGetCommunicationrecipientsV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetCommunicationsendersV1Response;
use EzmaxApi::Object::EzsignfolderGetCommunicationsendersV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetEzsigndocumentsV1Response;
use EzmaxApi::Object::EzsignfolderGetEzsigndocumentsV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetEzsignfoldersignerassociationsV1Response;
use EzmaxApi::Object::EzsignfolderGetEzsignfoldersignerassociationsV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetEzsignsignaturesAutomaticV1Response;
use EzmaxApi::Object::EzsignfolderGetEzsignsignaturesAutomaticV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetFormsDataV1Response;
use EzmaxApi::Object::EzsignfolderGetFormsDataV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetListV1Response;
use EzmaxApi::Object::EzsignfolderGetListV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetObjectV1Response;
use EzmaxApi::Object::EzsignfolderGetObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetObjectV2Response;
use EzmaxApi::Object::EzsignfolderGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignfolderImportEzsignfoldersignerassociationsV1Request;
use EzmaxApi::Object::EzsignfolderImportEzsignfoldersignerassociationsV1Response;
use EzmaxApi::Object::EzsignfolderImportEzsignfoldersignerassociationsV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderImportEzsigntemplatepackageV1Request;
use EzmaxApi::Object::EzsignfolderImportEzsigntemplatepackageV1Response;
use EzmaxApi::Object::EzsignfolderImportEzsigntemplatepackageV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderListElement;
use EzmaxApi::Object::EzsignfolderReorderV1Request;
use EzmaxApi::Object::EzsignfolderReorderV1Response;
use EzmaxApi::Object::EzsignfolderRequest;
use EzmaxApi::Object::EzsignfolderRequestCompound;
use EzmaxApi::Object::EzsignfolderResponse;
use EzmaxApi::Object::EzsignfolderResponseCompound;
use EzmaxApi::Object::EzsignfolderSendV1Request;
use EzmaxApi::Object::EzsignfolderSendV1Response;
use EzmaxApi::Object::EzsignfolderSendV3Request;
use EzmaxApi::Object::EzsignfolderSendV3Response;
use EzmaxApi::Object::EzsignfolderUnsendV1Response;
use EzmaxApi::Object::EzsignfoldersignerassociationCreateEmbeddedUrlV1Request;
use EzmaxApi::Object::EzsignfoldersignerassociationCreateEmbeddedUrlV1Response;
use EzmaxApi::Object::EzsignfoldersignerassociationCreateEmbeddedUrlV1ResponseMPayload;
use EzmaxApi::Object::EzsignfoldersignerassociationCreateObjectV1Request;
use EzmaxApi::Object::EzsignfoldersignerassociationCreateObjectV1Response;
use EzmaxApi::Object::EzsignfoldersignerassociationCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignfoldersignerassociationCreateObjectV2Request;
use EzmaxApi::Object::EzsignfoldersignerassociationCreateObjectV2Response;
use EzmaxApi::Object::EzsignfoldersignerassociationCreateObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignfoldersignerassociationDeleteObjectV1Response;
use EzmaxApi::Object::EzsignfoldersignerassociationEditObjectV1Request;
use EzmaxApi::Object::EzsignfoldersignerassociationEditObjectV1Response;
use EzmaxApi::Object::EzsignfoldersignerassociationForceDisconnectV1Response;
use EzmaxApi::Object::EzsignfoldersignerassociationGetInPersonLoginUrlV1Response;
use EzmaxApi::Object::EzsignfoldersignerassociationGetInPersonLoginUrlV1ResponseMPayload;
use EzmaxApi::Object::EzsignfoldersignerassociationGetObjectV1Response;
use EzmaxApi::Object::EzsignfoldersignerassociationGetObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignfoldersignerassociationGetObjectV2Response;
use EzmaxApi::Object::EzsignfoldersignerassociationGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignfoldersignerassociationPatchObjectV1Request;
use EzmaxApi::Object::EzsignfoldersignerassociationPatchObjectV1Response;
use EzmaxApi::Object::EzsignfoldersignerassociationRequest;
use EzmaxApi::Object::EzsignfoldersignerassociationRequestCompound;
use EzmaxApi::Object::EzsignfoldersignerassociationRequestPatch;
use EzmaxApi::Object::EzsignfoldersignerassociationResponse;
use EzmaxApi::Object::EzsignfoldersignerassociationResponseCompound;
use EzmaxApi::Object::EzsignfoldersignerassociationResponseCompoundUser;
use EzmaxApi::Object::EzsignfoldertypeAutocompleteElementResponse;
use EzmaxApi::Object::EzsignfoldertypeCreateObjectV2Request;
use EzmaxApi::Object::EzsignfoldertypeCreateObjectV2Response;
use EzmaxApi::Object::EzsignfoldertypeCreateObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignfoldertypeEditObjectV1Request;
use EzmaxApi::Object::EzsignfoldertypeEditObjectV1Response;
use EzmaxApi::Object::EzsignfoldertypeEditObjectV2Request;
use EzmaxApi::Object::EzsignfoldertypeEditObjectV2Response;
use EzmaxApi::Object::EzsignfoldertypeGetAutocompleteV2Response;
use EzmaxApi::Object::EzsignfoldertypeGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::EzsignfoldertypeGetListV1Response;
use EzmaxApi::Object::EzsignfoldertypeGetListV1ResponseMPayload;
use EzmaxApi::Object::EzsignfoldertypeGetObjectV2Response;
use EzmaxApi::Object::EzsignfoldertypeGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignfoldertypeGetObjectV3Response;
use EzmaxApi::Object::EzsignfoldertypeGetObjectV3ResponseMPayload;
use EzmaxApi::Object::EzsignfoldertypeListElement;
use EzmaxApi::Object::EzsignfoldertypeRequest;
use EzmaxApi::Object::EzsignfoldertypeRequestCompound;
use EzmaxApi::Object::EzsignfoldertypeRequestCompoundV2;
use EzmaxApi::Object::EzsignfoldertypeRequestV2;
use EzmaxApi::Object::EzsignfoldertypeResponse;
use EzmaxApi::Object::EzsignfoldertypeResponseCompound;
use EzmaxApi::Object::EzsignfoldertypeResponseCompoundV3;
use EzmaxApi::Object::EzsignfoldertypeResponseV3;
use EzmaxApi::Object::EzsignformfieldRequest;
use EzmaxApi::Object::EzsignformfieldRequestCompound;
use EzmaxApi::Object::EzsignformfieldResponse;
use EzmaxApi::Object::EzsignformfieldResponseCompound;
use EzmaxApi::Object::EzsignformfieldgroupCreateObjectV1Request;
use EzmaxApi::Object::EzsignformfieldgroupCreateObjectV1Response;
use EzmaxApi::Object::EzsignformfieldgroupCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignformfieldgroupDeleteObjectV1Response;
use EzmaxApi::Object::EzsignformfieldgroupEditObjectV1Request;
use EzmaxApi::Object::EzsignformfieldgroupEditObjectV1Response;
use EzmaxApi::Object::EzsignformfieldgroupGetObjectV2Response;
use EzmaxApi::Object::EzsignformfieldgroupGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignformfieldgroupRequest;
use EzmaxApi::Object::EzsignformfieldgroupRequestCompound;
use EzmaxApi::Object::EzsignformfieldgroupResponse;
use EzmaxApi::Object::EzsignformfieldgroupResponseCompound;
use EzmaxApi::Object::EzsignformfieldgroupsignerRequest;
use EzmaxApi::Object::EzsignformfieldgroupsignerRequestCompound;
use EzmaxApi::Object::EzsignformfieldgroupsignerResponse;
use EzmaxApi::Object::EzsignformfieldgroupsignerResponseCompound;
use EzmaxApi::Object::EzsignpageConsultV1Response;
use EzmaxApi::Object::EzsignpageResponse;
use EzmaxApi::Object::EzsignpageResponseCompound;
use EzmaxApi::Object::EzsignsignatureCreateObjectV1Request;
use EzmaxApi::Object::EzsignsignatureCreateObjectV1Response;
use EzmaxApi::Object::EzsignsignatureCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignsignatureCreateObjectV2Request;
use EzmaxApi::Object::EzsignsignatureCreateObjectV2Response;
use EzmaxApi::Object::EzsignsignatureCreateObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignsignatureDeleteObjectV1Response;
use EzmaxApi::Object::EzsignsignatureEditObjectV1Request;
use EzmaxApi::Object::EzsignsignatureEditObjectV1Response;
use EzmaxApi::Object::EzsignsignatureGetEzsignsignatureattachmentV1Response;
use EzmaxApi::Object::EzsignsignatureGetEzsignsignatureattachmentV1ResponseMPayload;
use EzmaxApi::Object::EzsignsignatureGetEzsignsignaturesAutomaticV1Response;
use EzmaxApi::Object::EzsignsignatureGetEzsignsignaturesAutomaticV1ResponseMPayload;
use EzmaxApi::Object::EzsignsignatureGetObjectV2Response;
use EzmaxApi::Object::EzsignsignatureGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignsignatureRequest;
use EzmaxApi::Object::EzsignsignatureRequestCompound;
use EzmaxApi::Object::EzsignsignatureResponse;
use EzmaxApi::Object::EzsignsignatureResponseCompound;
use EzmaxApi::Object::EzsignsignatureSignV1Request;
use EzmaxApi::Object::EzsignsignatureSignV1Response;
use EzmaxApi::Object::EzsignsignatureattachmentResponse;
use EzmaxApi::Object::EzsignsignaturecustomdateRequest;
use EzmaxApi::Object::EzsignsignaturecustomdateRequestCompound;
use EzmaxApi::Object::EzsignsignaturecustomdateResponse;
use EzmaxApi::Object::EzsignsignaturecustomdateResponseCompound;
use EzmaxApi::Object::EzsignsignerRequest;
use EzmaxApi::Object::EzsignsignerRequestCompound;
use EzmaxApi::Object::EzsignsignerRequestCompoundContact;
use EzmaxApi::Object::EzsignsignerResponse;
use EzmaxApi::Object::EzsignsignerResponseCompound;
use EzmaxApi::Object::EzsignsignerResponseCompoundContact;
use EzmaxApi::Object::EzsignsignergroupCreateObjectV1Request;
use EzmaxApi::Object::EzsignsignergroupCreateObjectV1Response;
use EzmaxApi::Object::EzsignsignergroupCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignsignergroupDeleteObjectV1Response;
use EzmaxApi::Object::EzsignsignergroupEditEzsignsignergroupmembershipsV1Request;
use EzmaxApi::Object::EzsignsignergroupEditEzsignsignergroupmembershipsV1Response;
use EzmaxApi::Object::EzsignsignergroupEditEzsignsignergroupmembershipsV1ResponseMPayload;
use EzmaxApi::Object::EzsignsignergroupEditObjectV1Request;
use EzmaxApi::Object::EzsignsignergroupEditObjectV1Response;
use EzmaxApi::Object::EzsignsignergroupGetEzsignsignergroupmembershipsV1Response;
use EzmaxApi::Object::EzsignsignergroupGetEzsignsignergroupmembershipsV1ResponseMPayload;
use EzmaxApi::Object::EzsignsignergroupGetObjectV2Response;
use EzmaxApi::Object::EzsignsignergroupGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignsignergroupRequest;
use EzmaxApi::Object::EzsignsignergroupRequestCompound;
use EzmaxApi::Object::EzsignsignergroupResponse;
use EzmaxApi::Object::EzsignsignergroupResponseCompound;
use EzmaxApi::Object::EzsignsignergroupmembershipCreateObjectV1Request;
use EzmaxApi::Object::EzsignsignergroupmembershipCreateObjectV1Response;
use EzmaxApi::Object::EzsignsignergroupmembershipCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignsignergroupmembershipDeleteObjectV1Response;
use EzmaxApi::Object::EzsignsignergroupmembershipGetObjectV2Response;
use EzmaxApi::Object::EzsignsignergroupmembershipGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignsignergroupmembershipRequest;
use EzmaxApi::Object::EzsignsignergroupmembershipRequestCompound;
use EzmaxApi::Object::EzsignsignergroupmembershipResponse;
use EzmaxApi::Object::EzsignsignergroupmembershipResponseCompound;
use EzmaxApi::Object::EzsignsigningreasonAutocompleteElementResponse;
use EzmaxApi::Object::EzsignsigningreasonCreateObjectV1Request;
use EzmaxApi::Object::EzsignsigningreasonCreateObjectV1Response;
use EzmaxApi::Object::EzsignsigningreasonCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignsigningreasonEditObjectV1Request;
use EzmaxApi::Object::EzsignsigningreasonEditObjectV1Response;
use EzmaxApi::Object::EzsignsigningreasonGetAutocompleteV2Response;
use EzmaxApi::Object::EzsignsigningreasonGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::EzsignsigningreasonGetListV1Response;
use EzmaxApi::Object::EzsignsigningreasonGetListV1ResponseMPayload;
use EzmaxApi::Object::EzsignsigningreasonGetObjectV2Response;
use EzmaxApi::Object::EzsignsigningreasonGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignsigningreasonListElement;
use EzmaxApi::Object::EzsignsigningreasonRequest;
use EzmaxApi::Object::EzsignsigningreasonRequestCompound;
use EzmaxApi::Object::EzsignsigningreasonResponse;
use EzmaxApi::Object::EzsignsigningreasonResponseCompound;
use EzmaxApi::Object::EzsigntemplateAutocompleteElementResponse;
use EzmaxApi::Object::EzsigntemplateCopyV1Request;
use EzmaxApi::Object::EzsigntemplateCopyV1Response;
use EzmaxApi::Object::EzsigntemplateCopyV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplateCreateObjectV1Request;
use EzmaxApi::Object::EzsigntemplateCreateObjectV1Response;
use EzmaxApi::Object::EzsigntemplateCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplateCreateObjectV2Request;
use EzmaxApi::Object::EzsigntemplateCreateObjectV2Response;
use EzmaxApi::Object::EzsigntemplateCreateObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplateDeleteObjectV1Response;
use EzmaxApi::Object::EzsigntemplateEditObjectV1Request;
use EzmaxApi::Object::EzsigntemplateEditObjectV1Response;
use EzmaxApi::Object::EzsigntemplateEditObjectV2Request;
use EzmaxApi::Object::EzsigntemplateEditObjectV2Response;
use EzmaxApi::Object::EzsigntemplateGetAutocompleteV2Response;
use EzmaxApi::Object::EzsigntemplateGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplateGetListV1Response;
use EzmaxApi::Object::EzsigntemplateGetListV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplateGetObjectV1Response;
use EzmaxApi::Object::EzsigntemplateGetObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplateGetObjectV2Response;
use EzmaxApi::Object::EzsigntemplateGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplateListElement;
use EzmaxApi::Object::EzsigntemplateRequest;
use EzmaxApi::Object::EzsigntemplateRequestCompound;
use EzmaxApi::Object::EzsigntemplateRequestCompoundV2;
use EzmaxApi::Object::EzsigntemplateRequestV2;
use EzmaxApi::Object::EzsigntemplateResponse;
use EzmaxApi::Object::EzsigntemplateResponseCompound;
use EzmaxApi::Object::EzsigntemplatedocumentCreateObjectV1Request;
use EzmaxApi::Object::EzsigntemplatedocumentCreateObjectV1Response;
use EzmaxApi::Object::EzsigntemplatedocumentCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatedocumentEditEzsigntemplateformfieldgroupsV1Request;
use EzmaxApi::Object::EzsigntemplatedocumentEditEzsigntemplateformfieldgroupsV1Response;
use EzmaxApi::Object::EzsigntemplatedocumentEditEzsigntemplateformfieldgroupsV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatedocumentEditEzsigntemplatesignaturesV1Request;
use EzmaxApi::Object::EzsigntemplatedocumentEditEzsigntemplatesignaturesV1Response;
use EzmaxApi::Object::EzsigntemplatedocumentEditEzsigntemplatesignaturesV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatedocumentEditObjectV1Request;
use EzmaxApi::Object::EzsigntemplatedocumentEditObjectV1Response;
use EzmaxApi::Object::EzsigntemplatedocumentFlattenV1Response;
use EzmaxApi::Object::EzsigntemplatedocumentGetEzsigntemplatedocumentpagesV1Response;
use EzmaxApi::Object::EzsigntemplatedocumentGetEzsigntemplatedocumentpagesV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatedocumentGetEzsigntemplateformfieldgroupsV1Response;
use EzmaxApi::Object::EzsigntemplatedocumentGetEzsigntemplateformfieldgroupsV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatedocumentGetEzsigntemplatesignaturesV1Response;
use EzmaxApi::Object::EzsigntemplatedocumentGetEzsigntemplatesignaturesV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatedocumentGetObjectV2Response;
use EzmaxApi::Object::EzsigntemplatedocumentGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatedocumentGetWordsPositionsV1Request;
use EzmaxApi::Object::EzsigntemplatedocumentGetWordsPositionsV1Response;
use EzmaxApi::Object::EzsigntemplatedocumentPatchObjectV1Request;
use EzmaxApi::Object::EzsigntemplatedocumentPatchObjectV1Response;
use EzmaxApi::Object::EzsigntemplatedocumentRequest;
use EzmaxApi::Object::EzsigntemplatedocumentRequestCompound;
use EzmaxApi::Object::EzsigntemplatedocumentRequestPatch;
use EzmaxApi::Object::EzsigntemplatedocumentResponse;
use EzmaxApi::Object::EzsigntemplatedocumentResponseCompound;
use EzmaxApi::Object::EzsigntemplatedocumentpageResponse;
use EzmaxApi::Object::EzsigntemplatedocumentpageResponseCompound;
use EzmaxApi::Object::EzsigntemplateelementdependencyRequest;
use EzmaxApi::Object::EzsigntemplateelementdependencyRequestCompound;
use EzmaxApi::Object::EzsigntemplateelementdependencyResponse;
use EzmaxApi::Object::EzsigntemplateelementdependencyResponseCompound;
use EzmaxApi::Object::EzsigntemplateformfieldRequest;
use EzmaxApi::Object::EzsigntemplateformfieldRequestCompound;
use EzmaxApi::Object::EzsigntemplateformfieldResponse;
use EzmaxApi::Object::EzsigntemplateformfieldResponseCompound;
use EzmaxApi::Object::EzsigntemplateformfieldgroupCreateObjectV1Request;
use EzmaxApi::Object::EzsigntemplateformfieldgroupCreateObjectV1Response;
use EzmaxApi::Object::EzsigntemplateformfieldgroupCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplateformfieldgroupDeleteObjectV1Response;
use EzmaxApi::Object::EzsigntemplateformfieldgroupEditObjectV1Request;
use EzmaxApi::Object::EzsigntemplateformfieldgroupEditObjectV1Response;
use EzmaxApi::Object::EzsigntemplateformfieldgroupGetObjectV2Response;
use EzmaxApi::Object::EzsigntemplateformfieldgroupGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplateformfieldgroupRequest;
use EzmaxApi::Object::EzsigntemplateformfieldgroupRequestCompound;
use EzmaxApi::Object::EzsigntemplateformfieldgroupResponse;
use EzmaxApi::Object::EzsigntemplateformfieldgroupResponseCompound;
use EzmaxApi::Object::EzsigntemplateformfieldgroupsignerRequest;
use EzmaxApi::Object::EzsigntemplateformfieldgroupsignerRequestCompound;
use EzmaxApi::Object::EzsigntemplateformfieldgroupsignerResponse;
use EzmaxApi::Object::EzsigntemplateformfieldgroupsignerResponseCompound;
use EzmaxApi::Object::EzsigntemplateglobalAutocompleteElementResponse;
use EzmaxApi::Object::EzsigntemplateglobalGetAutocompleteV2Response;
use EzmaxApi::Object::EzsigntemplateglobalGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplateglobalGetObjectV2Response;
use EzmaxApi::Object::EzsigntemplateglobalGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplateglobalResponse;
use EzmaxApi::Object::EzsigntemplateglobalResponseCompound;
use EzmaxApi::Object::EzsigntemplateglobaldocumentResponse;
use EzmaxApi::Object::EzsigntemplateglobalsignerResponse;
use EzmaxApi::Object::EzsigntemplateglobalsignerResponseCompound;
use EzmaxApi::Object::EzsigntemplatepackageAutocompleteElementResponse;
use EzmaxApi::Object::EzsigntemplatepackageCreateObjectV1Request;
use EzmaxApi::Object::EzsigntemplatepackageCreateObjectV1Response;
use EzmaxApi::Object::EzsigntemplatepackageCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackageDeleteObjectV1Response;
use EzmaxApi::Object::EzsigntemplatepackageEditEzsigntemplatepackagesignersV1Request;
use EzmaxApi::Object::EzsigntemplatepackageEditEzsigntemplatepackagesignersV1Response;
use EzmaxApi::Object::EzsigntemplatepackageEditEzsigntemplatepackagesignersV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackageEditObjectV1Request;
use EzmaxApi::Object::EzsigntemplatepackageEditObjectV1Response;
use EzmaxApi::Object::EzsigntemplatepackageGetAutocompleteV2Response;
use EzmaxApi::Object::EzsigntemplatepackageGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackageGetListV1Response;
use EzmaxApi::Object::EzsigntemplatepackageGetListV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackageGetObjectV2Response;
use EzmaxApi::Object::EzsigntemplatepackageGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackageListElement;
use EzmaxApi::Object::EzsigntemplatepackageRequest;
use EzmaxApi::Object::EzsigntemplatepackageRequestCompound;
use EzmaxApi::Object::EzsigntemplatepackageResponse;
use EzmaxApi::Object::EzsigntemplatepackageResponseCompound;
use EzmaxApi::Object::EzsigntemplatepackagemembershipCreateObjectV1Request;
use EzmaxApi::Object::EzsigntemplatepackagemembershipCreateObjectV1Response;
use EzmaxApi::Object::EzsigntemplatepackagemembershipCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackagemembershipDeleteObjectV1Response;
use EzmaxApi::Object::EzsigntemplatepackagemembershipGetObjectV2Response;
use EzmaxApi::Object::EzsigntemplatepackagemembershipGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackagemembershipRequest;
use EzmaxApi::Object::EzsigntemplatepackagemembershipRequestCompound;
use EzmaxApi::Object::EzsigntemplatepackagemembershipResponse;
use EzmaxApi::Object::EzsigntemplatepackagemembershipResponseCompound;
use EzmaxApi::Object::EzsigntemplatepackagesignerCreateObjectV1Request;
use EzmaxApi::Object::EzsigntemplatepackagesignerCreateObjectV1Response;
use EzmaxApi::Object::EzsigntemplatepackagesignerCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackagesignerDeleteObjectV1Response;
use EzmaxApi::Object::EzsigntemplatepackagesignerDeleteObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackagesignerEditObjectV1Request;
use EzmaxApi::Object::EzsigntemplatepackagesignerEditObjectV1Response;
use EzmaxApi::Object::EzsigntemplatepackagesignerGetObjectV2Response;
use EzmaxApi::Object::EzsigntemplatepackagesignerGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackagesignerRequest;
use EzmaxApi::Object::EzsigntemplatepackagesignerRequestCompound;
use EzmaxApi::Object::EzsigntemplatepackagesignerResponse;
use EzmaxApi::Object::EzsigntemplatepackagesignerResponseCompound;
use EzmaxApi::Object::EzsigntemplatepackagesignermembershipCreateObjectV1Request;
use EzmaxApi::Object::EzsigntemplatepackagesignermembershipCreateObjectV1Response;
use EzmaxApi::Object::EzsigntemplatepackagesignermembershipCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackagesignermembershipDeleteObjectV1Response;
use EzmaxApi::Object::EzsigntemplatepackagesignermembershipDeleteObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackagesignermembershipGetObjectV2Response;
use EzmaxApi::Object::EzsigntemplatepackagesignermembershipGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackagesignermembershipRequest;
use EzmaxApi::Object::EzsigntemplatepackagesignermembershipRequestCompound;
use EzmaxApi::Object::EzsigntemplatepackagesignermembershipResponse;
use EzmaxApi::Object::EzsigntemplatepackagesignermembershipResponseCompound;
use EzmaxApi::Object::EzsigntemplatesignatureCreateObjectV1Request;
use EzmaxApi::Object::EzsigntemplatesignatureCreateObjectV1Response;
use EzmaxApi::Object::EzsigntemplatesignatureCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatesignatureDeleteObjectV1Response;
use EzmaxApi::Object::EzsigntemplatesignatureEditObjectV1Request;
use EzmaxApi::Object::EzsigntemplatesignatureEditObjectV1Response;
use EzmaxApi::Object::EzsigntemplatesignatureGetObjectV2Response;
use EzmaxApi::Object::EzsigntemplatesignatureGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatesignatureRequest;
use EzmaxApi::Object::EzsigntemplatesignatureRequestCompound;
use EzmaxApi::Object::EzsigntemplatesignatureResponse;
use EzmaxApi::Object::EzsigntemplatesignatureResponseCompound;
use EzmaxApi::Object::EzsigntemplatesignaturecustomdateRequest;
use EzmaxApi::Object::EzsigntemplatesignaturecustomdateRequestCompound;
use EzmaxApi::Object::EzsigntemplatesignaturecustomdateResponse;
use EzmaxApi::Object::EzsigntemplatesignaturecustomdateResponseCompound;
use EzmaxApi::Object::EzsigntemplatesignerCreateObjectV1Request;
use EzmaxApi::Object::EzsigntemplatesignerCreateObjectV1Response;
use EzmaxApi::Object::EzsigntemplatesignerCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatesignerDeleteObjectV1Response;
use EzmaxApi::Object::EzsigntemplatesignerEditObjectV1Request;
use EzmaxApi::Object::EzsigntemplatesignerEditObjectV1Response;
use EzmaxApi::Object::EzsigntemplatesignerGetObjectV2Response;
use EzmaxApi::Object::EzsigntemplatesignerGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatesignerRequest;
use EzmaxApi::Object::EzsigntemplatesignerRequestCompound;
use EzmaxApi::Object::EzsigntemplatesignerResponse;
use EzmaxApi::Object::EzsigntemplatesignerResponseCompound;
use EzmaxApi::Object::EzsigntsarequirementAutocompleteElementResponse;
use EzmaxApi::Object::EzsigntsarequirementGetAutocompleteV2Response;
use EzmaxApi::Object::EzsigntsarequirementGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::FieldEActivesessionOrigin;
use EzmaxApi::Object::FieldEActivesessionUsertype;
use EzmaxApi::Object::FieldEActivesessionWeekdaystart;
use EzmaxApi::Object::FieldEAttachmentDocumenttype;
use EzmaxApi::Object::FieldEAttachmentPrivacy;
use EzmaxApi::Object::FieldEAttachmentType;
use EzmaxApi::Object::FieldEAttachmentVerified;
use EzmaxApi::Object::FieldEAttachmentlogType;
use EzmaxApi::Object::FieldEBrandingLogo;
use EzmaxApi::Object::FieldEBrandingLogointerface;
use EzmaxApi::Object::FieldECommunicationImportance;
use EzmaxApi::Object::FieldECommunicationType;
use EzmaxApi::Object::FieldECommunicationexternalrecipientType;
use EzmaxApi::Object::FieldECommunicationrecipientType;
use EzmaxApi::Object::FieldECreditcardtypeCodename;
use EzmaxApi::Object::FieldEDiscussionmessageStatus;
use EzmaxApi::Object::FieldEErrorCode;
use EzmaxApi::Object::FieldEEzmaxinvoicingPaymenttype;
use EzmaxApi::Object::FieldEEzmaxinvoicingagentVariationezmax;
use EzmaxApi::Object::FieldEEzmaxinvoicingagentVariationezsign;
use EzmaxApi::Object::FieldEEzmaxinvoicingcontractPaymenttype;
use EzmaxApi::Object::FieldEEzmaxinvoicinguserVariationezsign;
use EzmaxApi::Object::FieldEEzsignannotationType;
use EzmaxApi::Object::FieldEEzsigndocumentStep;
use EzmaxApi::Object::FieldEEzsigndocumentlogType;
use EzmaxApi::Object::FieldEEzsignelementdependencyOperator;
use EzmaxApi::Object::FieldEEzsignelementdependencyValidation;
use EzmaxApi::Object::FieldEEzsignfolderCompletion;
use EzmaxApi::Object::FieldEEzsignfolderSendreminderfrequency;
use EzmaxApi::Object::FieldEEzsignfolderStep;
use EzmaxApi::Object::FieldEEzsignfoldertypeCompletion;
use EzmaxApi::Object::FieldEEzsignfoldertypeDisposal;
use EzmaxApi::Object::FieldEEzsignfoldertypePrivacylevel;
use EzmaxApi::Object::FieldEEzsignfoldertypeSendreminderfrequency;
use EzmaxApi::Object::FieldEEzsignformfieldDependencyrequirement;
use EzmaxApi::Object::FieldEEzsignformfieldgroupSignerrequirement;
use EzmaxApi::Object::FieldEEzsignformfieldgroupTooltipposition;
use EzmaxApi::Object::FieldEEzsignformfieldgroupType;
use EzmaxApi::Object::FieldEEzsignsignatureAttachmentnamesource;
use EzmaxApi::Object::FieldEEzsignsignatureDependencyrequirement;
use EzmaxApi::Object::FieldEEzsignsignatureFont;
use EzmaxApi::Object::FieldEEzsignsignatureTooltipposition;
use EzmaxApi::Object::FieldEEzsignsignatureType;
use EzmaxApi::Object::FieldEEzsigntemplateType;
use EzmaxApi::Object::FieldEEzsigntemplateelementdependencyOperator;
use EzmaxApi::Object::FieldEEzsigntemplateelementdependencyValidation;
use EzmaxApi::Object::FieldEEzsigntemplateformfieldDependencyrequirement;
use EzmaxApi::Object::FieldEEzsigntemplateformfieldPositioning;
use EzmaxApi::Object::FieldEEzsigntemplateformfieldPositioningoccurence;
use EzmaxApi::Object::FieldEEzsigntemplateformfieldgroupSignerrequirement;
use EzmaxApi::Object::FieldEEzsigntemplateformfieldgroupTooltipposition;
use EzmaxApi::Object::FieldEEzsigntemplateformfieldgroupType;
use EzmaxApi::Object::FieldEEzsigntemplateglobalModule;
use EzmaxApi::Object::FieldEEzsigntemplateglobalSupplier;
use EzmaxApi::Object::FieldEEzsigntemplatesignatureAttachmentnamesource;
use EzmaxApi::Object::FieldEEzsigntemplatesignatureDependencyrequirement;
use EzmaxApi::Object::FieldEEzsigntemplatesignatureFont;
use EzmaxApi::Object::FieldEEzsigntemplatesignaturePositioning;
use EzmaxApi::Object::FieldEEzsigntemplatesignaturePositioningoccurence;
use EzmaxApi::Object::FieldEEzsigntemplatesignatureTooltipposition;
use EzmaxApi::Object::FieldEEzsigntemplatesignatureType;
use EzmaxApi::Object::FieldENotificationpreferenceStatus;
use EzmaxApi::Object::FieldEPaymenttermType;
use EzmaxApi::Object::FieldEPhoneType;
use EzmaxApi::Object::FieldESessionhistoryEndby;
use EzmaxApi::Object::FieldESystemconfigurationEzsign;
use EzmaxApi::Object::FieldESystemconfigurationEzsignofficeplan;
use EzmaxApi::Object::FieldESystemconfigurationLanguage1;
use EzmaxApi::Object::FieldESystemconfigurationLanguage2;
use EzmaxApi::Object::FieldESystemconfigurationNewexternaluseraction;
use EzmaxApi::Object::FieldEUserEzsignaccess;
use EzmaxApi::Object::FieldEUserEzsignprepaid;
use EzmaxApi::Object::FieldEUserEzsignsendreminderfrequency;
use EzmaxApi::Object::FieldEUserLogintype;
use EzmaxApi::Object::FieldEUserOrigin;
use EzmaxApi::Object::FieldEUserType;
use EzmaxApi::Object::FieldEVariableexpenseTaxable;
use EzmaxApi::Object::FieldEVersionhistoryType;
use EzmaxApi::Object::FieldEVersionhistoryUsertype;
use EzmaxApi::Object::FieldEWebhookEzsignevent;
use EzmaxApi::Object::FieldEWebhookManagementevent;
use EzmaxApi::Object::FieldEWebhookModule;
use EzmaxApi::Object::FieldPksEzmaxclientOs;
use EzmaxApi::Object::FontAutocompleteElementResponse;
use EzmaxApi::Object::FontGetAutocompleteV2Response;
use EzmaxApi::Object::FontGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::FranchisebrokerAutocompleteElementResponse;
use EzmaxApi::Object::FranchisebrokerGetAutocompleteV2Response;
use EzmaxApi::Object::FranchisebrokerGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::FranchiseofficeAutocompleteElementResponse;
use EzmaxApi::Object::FranchiseofficeGetAutocompleteV2Response;
use EzmaxApi::Object::FranchiseofficeGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::FranchisereferalincomeCreateObjectV2Request;
use EzmaxApi::Object::FranchisereferalincomeCreateObjectV2Response;
use EzmaxApi::Object::FranchisereferalincomeCreateObjectV2ResponseMPayload;
use EzmaxApi::Object::FranchisereferalincomeRequest;
use EzmaxApi::Object::FranchisereferalincomeRequestCompound;
use EzmaxApi::Object::GlobalCustomerGetEndpointV1Response;
use EzmaxApi::Object::GlobalEzmaxclientVersionV1Response;
use EzmaxApi::Object::GlobalEzmaxcustomerGetConfigurationV1Response;
use EzmaxApi::Object::HeaderAcceptLanguage;
use EzmaxApi::Object::InscriptionGetAttachmentsV1Response;
use EzmaxApi::Object::InscriptionGetAttachmentsV1ResponseMPayload;
use EzmaxApi::Object::InscriptionGetCommunicationListV1Response;
use EzmaxApi::Object::InscriptionGetCommunicationListV1ResponseMPayload;
use EzmaxApi::Object::InscriptionGetCommunicationsendersV1Response;
use EzmaxApi::Object::InscriptionGetCommunicationsendersV1ResponseMPayload;
use EzmaxApi::Object::InscriptionnotauthenticatedGetCommunicationListV1Response;
use EzmaxApi::Object::InscriptionnotauthenticatedGetCommunicationListV1ResponseMPayload;
use EzmaxApi::Object::InscriptiontempGetCommunicationListV1Response;
use EzmaxApi::Object::InscriptiontempGetCommunicationListV1ResponseMPayload;
use EzmaxApi::Object::InvoiceGetAttachmentsV1Response;
use EzmaxApi::Object::InvoiceGetAttachmentsV1ResponseMPayload;
use EzmaxApi::Object::InvoiceGetCommunicationListV1Response;
use EzmaxApi::Object::InvoiceGetCommunicationListV1ResponseMPayload;
use EzmaxApi::Object::LanguageAutocompleteElementResponse;
use EzmaxApi::Object::LanguageGetAutocompleteV2Response;
use EzmaxApi::Object::LanguageGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::ModuleAutocompleteElementResponse;
use EzmaxApi::Object::ModuleGetAutocompleteV2Response;
use EzmaxApi::Object::ModuleGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::ModuleResponse;
use EzmaxApi::Object::ModuleResponseCompound;
use EzmaxApi::Object::ModulegroupGetAllV1Response;
use EzmaxApi::Object::ModulegroupGetAllV1ResponseMPayload;
use EzmaxApi::Object::ModulegroupResponse;
use EzmaxApi::Object::ModulegroupResponseCompound;
use EzmaxApi::Object::ModulesectionResponse;
use EzmaxApi::Object::ModulesectionResponseCompound;
use EzmaxApi::Object::MultilingualApikeyDescription;
use EzmaxApi::Object::MultilingualBillingentityinternalDescription;
use EzmaxApi::Object::MultilingualBrandingDescription;
use EzmaxApi::Object::MultilingualEzmaxinvoicingsummaryinternalDescription;
use EzmaxApi::Object::MultilingualEzsignfoldertypeName;
use EzmaxApi::Object::MultilingualEzsignsignergroupDescription;
use EzmaxApi::Object::MultilingualEzsignsigningreasonDescription;
use EzmaxApi::Object::MultilingualNotificationsubsectionName;
use EzmaxApi::Object::MultilingualNotificationtestName;
use EzmaxApi::Object::MultilingualPaymenttermDescription;
use EzmaxApi::Object::MultilingualSubnetDescription;
use EzmaxApi::Object::MultilingualUsergroupName;
use EzmaxApi::Object::MultilingualUserlogintypeDescription;
use EzmaxApi::Object::MultilingualVariableexpenseDescription;
use EzmaxApi::Object::MultilingualVersionhistoryDetail;
use EzmaxApi::Object::NotificationsectionGetNotificationtestsV1Response;
use EzmaxApi::Object::NotificationsectionGetNotificationtestsV1ResponseMPayload;
use EzmaxApi::Object::NotificationsubsectionResponse;
use EzmaxApi::Object::NotificationtestGetElementsV1Response;
use EzmaxApi::Object::NotificationtestGetElementsV1ResponseMPayload;
use EzmaxApi::Object::NotificationtestResponse;
use EzmaxApi::Object::OtherincomeGetCommunicationListV1Response;
use EzmaxApi::Object::OtherincomeGetCommunicationListV1ResponseMPayload;
use EzmaxApi::Object::PaymenttermAutocompleteElementResponse;
use EzmaxApi::Object::PaymenttermCreateObjectV1Request;
use EzmaxApi::Object::PaymenttermCreateObjectV1Response;
use EzmaxApi::Object::PaymenttermCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::PaymenttermEditObjectV1Request;
use EzmaxApi::Object::PaymenttermEditObjectV1Response;
use EzmaxApi::Object::PaymenttermGetAutocompleteV2Response;
use EzmaxApi::Object::PaymenttermGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::PaymenttermGetListV1Response;
use EzmaxApi::Object::PaymenttermGetListV1ResponseMPayload;
use EzmaxApi::Object::PaymenttermGetObjectV2Response;
use EzmaxApi::Object::PaymenttermGetObjectV2ResponseMPayload;
use EzmaxApi::Object::PaymenttermListElement;
use EzmaxApi::Object::PaymenttermRequest;
use EzmaxApi::Object::PaymenttermRequestCompound;
use EzmaxApi::Object::PaymenttermResponse;
use EzmaxApi::Object::PaymenttermResponseCompound;
use EzmaxApi::Object::PeriodAutocompleteElementResponse;
use EzmaxApi::Object::PeriodGetAutocompleteV2Response;
use EzmaxApi::Object::PeriodGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::PermissionCreateObjectV1Request;
use EzmaxApi::Object::PermissionCreateObjectV1Response;
use EzmaxApi::Object::PermissionCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::PermissionDeleteObjectV1Response;
use EzmaxApi::Object::PermissionEditObjectV1Request;
use EzmaxApi::Object::PermissionEditObjectV1Response;
use EzmaxApi::Object::PermissionGetObjectV2Response;
use EzmaxApi::Object::PermissionGetObjectV2ResponseMPayload;
use EzmaxApi::Object::PermissionRequest;
use EzmaxApi::Object::PermissionRequestCompound;
use EzmaxApi::Object::PermissionResponse;
use EzmaxApi::Object::PermissionResponseCompound;
use EzmaxApi::Object::PhoneRequest;
use EzmaxApi::Object::PhoneRequestCompound;
use EzmaxApi::Object::PhoneRequestCompoundV2;
use EzmaxApi::Object::PhoneRequestV2;
use EzmaxApi::Object::PhoneResponse;
use EzmaxApi::Object::PhoneResponseCompound;
use EzmaxApi::Object::PhonetypeAutocompleteElementResponse;
use EzmaxApi::Object::PhonetypeGetAutocompleteV2Response;
use EzmaxApi::Object::PhonetypeGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::ProvinceAutocompleteElementResponse;
use EzmaxApi::Object::ProvinceGetAutocompleteV2Response;
use EzmaxApi::Object::ProvinceGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::RejectedoffertopurchaseGetCommunicationListV1Response;
use EzmaxApi::Object::RejectedoffertopurchaseGetCommunicationListV1ResponseMPayload;
use EzmaxApi::Object::ScimAuthenticationScheme;
use EzmaxApi::Object::ScimEmail;
use EzmaxApi::Object::ScimGroup;
use EzmaxApi::Object::ScimGroupMember;
use EzmaxApi::Object::ScimServiceProviderConfig;
use EzmaxApi::Object::ScimServiceProviderConfigBulk;
use EzmaxApi::Object::ScimServiceProviderConfigChangePassword;
use EzmaxApi::Object::ScimServiceProviderConfigEtag;
use EzmaxApi::Object::ScimServiceProviderConfigFilter;
use EzmaxApi::Object::ScimServiceProviderConfigPatch;
use EzmaxApi::Object::ScimServiceProviderConfigSort;
use EzmaxApi::Object::ScimUser;
use EzmaxApi::Object::ScimUserList;
use EzmaxApi::Object::SecretquestionAutocompleteElementResponse;
use EzmaxApi::Object::SecretquestionGetAutocompleteV2Response;
use EzmaxApi::Object::SecretquestionGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::SessionhistoryGetListV1Response;
use EzmaxApi::Object::SessionhistoryGetListV1ResponseMPayload;
use EzmaxApi::Object::SessionhistoryListElement;
use EzmaxApi::Object::SignatureCreateObjectV1Request;
use EzmaxApi::Object::SignatureCreateObjectV1Response;
use EzmaxApi::Object::SignatureCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::SignatureDeleteObjectV1Response;
use EzmaxApi::Object::SignatureEditObjectV1Request;
use EzmaxApi::Object::SignatureEditObjectV1Response;
use EzmaxApi::Object::SignatureGetObjectV2Response;
use EzmaxApi::Object::SignatureGetObjectV2ResponseMPayload;
use EzmaxApi::Object::SignatureRequest;
use EzmaxApi::Object::SignatureRequestCompound;
use EzmaxApi::Object::SignatureResponse;
use EzmaxApi::Object::SignatureResponseCompound;
use EzmaxApi::Object::SubnetCreateObjectV1Request;
use EzmaxApi::Object::SubnetCreateObjectV1Response;
use EzmaxApi::Object::SubnetCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::SubnetDeleteObjectV1Response;
use EzmaxApi::Object::SubnetEditObjectV1Request;
use EzmaxApi::Object::SubnetEditObjectV1Response;
use EzmaxApi::Object::SubnetGetObjectV2Response;
use EzmaxApi::Object::SubnetGetObjectV2ResponseMPayload;
use EzmaxApi::Object::SubnetRequest;
use EzmaxApi::Object::SubnetRequestCompound;
use EzmaxApi::Object::SubnetResponse;
use EzmaxApi::Object::SubnetResponseCompound;
use EzmaxApi::Object::SystemconfigurationEditObjectV1Request;
use EzmaxApi::Object::SystemconfigurationEditObjectV1Response;
use EzmaxApi::Object::SystemconfigurationGetObjectV2Response;
use EzmaxApi::Object::SystemconfigurationGetObjectV2ResponseMPayload;
use EzmaxApi::Object::SystemconfigurationRequest;
use EzmaxApi::Object::SystemconfigurationRequestCompound;
use EzmaxApi::Object::SystemconfigurationResponse;
use EzmaxApi::Object::SystemconfigurationResponseCompound;
use EzmaxApi::Object::TaxassignmentAutocompleteElementResponse;
use EzmaxApi::Object::TaxassignmentGetAutocompleteV2Response;
use EzmaxApi::Object::TaxassignmentGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::TextstylestaticResponse;
use EzmaxApi::Object::TextstylestaticResponseCompound;
use EzmaxApi::Object::TimezoneAutocompleteElementResponse;
use EzmaxApi::Object::TimezoneGetAutocompleteV2Response;
use EzmaxApi::Object::TimezoneGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::UserAutocompleteElementResponse;
use EzmaxApi::Object::UserCreateEzsignuserV1Request;
use EzmaxApi::Object::UserCreateEzsignuserV1Response;
use EzmaxApi::Object::UserCreateEzsignuserV1ResponseMPayload;
use EzmaxApi::Object::UserCreateObjectV1Request;
use EzmaxApi::Object::UserCreateObjectV1Response;
use EzmaxApi::Object::UserCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::UserCreateObjectV2Request;
use EzmaxApi::Object::UserCreateObjectV2Response;
use EzmaxApi::Object::UserCreateObjectV2ResponseMPayload;
use EzmaxApi::Object::UserEditObjectV1Request;
use EzmaxApi::Object::UserEditObjectV1Response;
use EzmaxApi::Object::UserEditPermissionsV1Request;
use EzmaxApi::Object::UserEditPermissionsV1Response;
use EzmaxApi::Object::UserEditPermissionsV1ResponseMPayload;
use EzmaxApi::Object::UserGetApikeysV1Response;
use EzmaxApi::Object::UserGetApikeysV1ResponseMPayload;
use EzmaxApi::Object::UserGetAutocompleteV2Response;
use EzmaxApi::Object::UserGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::UserGetEffectivePermissionsV1Response;
use EzmaxApi::Object::UserGetEffectivePermissionsV1ResponseMPayload;
use EzmaxApi::Object::UserGetListV1Response;
use EzmaxApi::Object::UserGetListV1ResponseMPayload;
use EzmaxApi::Object::UserGetObjectV2Response;
use EzmaxApi::Object::UserGetObjectV2ResponseMPayload;
use EzmaxApi::Object::UserGetPermissionsV1Response;
use EzmaxApi::Object::UserGetPermissionsV1ResponseMPayload;
use EzmaxApi::Object::UserGetSubnetsV1Response;
use EzmaxApi::Object::UserGetSubnetsV1ResponseMPayload;
use EzmaxApi::Object::UserGetUsergroupexternalsV1Response;
use EzmaxApi::Object::UserGetUsergroupexternalsV1ResponseMPayload;
use EzmaxApi::Object::UserGetUsergroupsV1Response;
use EzmaxApi::Object::UserGetUsergroupsV1ResponseMPayload;
use EzmaxApi::Object::UserListElement;
use EzmaxApi::Object::UserRequest;
use EzmaxApi::Object::UserRequestCompound;
use EzmaxApi::Object::UserRequestCompoundV2;
use EzmaxApi::Object::UserRequestV2;
use EzmaxApi::Object::UserResponse;
use EzmaxApi::Object::UserResponseCompound;
use EzmaxApi::Object::UserSendPasswordResetV1Response;
use EzmaxApi::Object::UsergroupAutocompleteElementResponse;
use EzmaxApi::Object::UsergroupCreateObjectV1Request;
use EzmaxApi::Object::UsergroupCreateObjectV1Response;
use EzmaxApi::Object::UsergroupCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::UsergroupEditObjectV1Request;
use EzmaxApi::Object::UsergroupEditObjectV1Response;
use EzmaxApi::Object::UsergroupEditPermissionsV1Request;
use EzmaxApi::Object::UsergroupEditPermissionsV1Response;
use EzmaxApi::Object::UsergroupEditPermissionsV1ResponseMPayload;
use EzmaxApi::Object::UsergroupEditUsergroupdelegationsV1Request;
use EzmaxApi::Object::UsergroupEditUsergroupdelegationsV1Response;
use EzmaxApi::Object::UsergroupEditUsergroupdelegationsV1ResponseMPayload;
use EzmaxApi::Object::UsergroupEditUsergroupmembershipsV1Request;
use EzmaxApi::Object::UsergroupEditUsergroupmembershipsV1Response;
use EzmaxApi::Object::UsergroupEditUsergroupmembershipsV1ResponseMPayload;
use EzmaxApi::Object::UsergroupGetAutocompleteV2Response;
use EzmaxApi::Object::UsergroupGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::UsergroupGetListV1Response;
use EzmaxApi::Object::UsergroupGetListV1ResponseMPayload;
use EzmaxApi::Object::UsergroupGetObjectV2Response;
use EzmaxApi::Object::UsergroupGetObjectV2ResponseMPayload;
use EzmaxApi::Object::UsergroupGetPermissionsV1Response;
use EzmaxApi::Object::UsergroupGetPermissionsV1ResponseMPayload;
use EzmaxApi::Object::UsergroupGetUsergroupdelegationsV1Response;
use EzmaxApi::Object::UsergroupGetUsergroupdelegationsV1ResponseMPayload;
use EzmaxApi::Object::UsergroupGetUsergroupmembershipsV1Response;
use EzmaxApi::Object::UsergroupGetUsergroupmembershipsV1ResponseMPayload;
use EzmaxApi::Object::UsergroupListElement;
use EzmaxApi::Object::UsergroupRequest;
use EzmaxApi::Object::UsergroupRequestCompound;
use EzmaxApi::Object::UsergroupResponse;
use EzmaxApi::Object::UsergroupResponseCompound;
use EzmaxApi::Object::UsergroupdelegationCreateObjectV1Request;
use EzmaxApi::Object::UsergroupdelegationCreateObjectV1Response;
use EzmaxApi::Object::UsergroupdelegationCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::UsergroupdelegationDeleteObjectV1Response;
use EzmaxApi::Object::UsergroupdelegationEditObjectV1Request;
use EzmaxApi::Object::UsergroupdelegationEditObjectV1Response;
use EzmaxApi::Object::UsergroupdelegationGetObjectV2Response;
use EzmaxApi::Object::UsergroupdelegationGetObjectV2ResponseMPayload;
use EzmaxApi::Object::UsergroupdelegationRequest;
use EzmaxApi::Object::UsergroupdelegationRequestCompound;
use EzmaxApi::Object::UsergroupdelegationResponse;
use EzmaxApi::Object::UsergroupdelegationResponseCompound;
use EzmaxApi::Object::UsergroupexternalAutocompleteElementResponse;
use EzmaxApi::Object::UsergroupexternalCreateObjectV1Request;
use EzmaxApi::Object::UsergroupexternalCreateObjectV1Response;
use EzmaxApi::Object::UsergroupexternalCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::UsergroupexternalDeleteObjectV1Response;
use EzmaxApi::Object::UsergroupexternalEditObjectV1Request;
use EzmaxApi::Object::UsergroupexternalEditObjectV1Response;
use EzmaxApi::Object::UsergroupexternalGetAutocompleteV2Response;
use EzmaxApi::Object::UsergroupexternalGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::UsergroupexternalGetListV1Response;
use EzmaxApi::Object::UsergroupexternalGetListV1ResponseMPayload;
use EzmaxApi::Object::UsergroupexternalGetObjectV2Response;
use EzmaxApi::Object::UsergroupexternalGetObjectV2ResponseMPayload;
use EzmaxApi::Object::UsergroupexternalGetUsergroupexternalmembershipsV1Response;
use EzmaxApi::Object::UsergroupexternalGetUsergroupexternalmembershipsV1ResponseMPayload;
use EzmaxApi::Object::UsergroupexternalGetUsergroupsV1Response;
use EzmaxApi::Object::UsergroupexternalGetUsergroupsV1ResponseMPayload;
use EzmaxApi::Object::UsergroupexternalListElement;
use EzmaxApi::Object::UsergroupexternalRequest;
use EzmaxApi::Object::UsergroupexternalRequestCompound;
use EzmaxApi::Object::UsergroupexternalResponse;
use EzmaxApi::Object::UsergroupexternalResponseCompound;
use EzmaxApi::Object::UsergroupexternalmembershipResponse;
use EzmaxApi::Object::UsergroupexternalmembershipResponseCompound;
use EzmaxApi::Object::UsergroupmembershipCreateObjectV1Request;
use EzmaxApi::Object::UsergroupmembershipCreateObjectV1Response;
use EzmaxApi::Object::UsergroupmembershipCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::UsergroupmembershipDeleteObjectV1Response;
use EzmaxApi::Object::UsergroupmembershipEditObjectV1Request;
use EzmaxApi::Object::UsergroupmembershipEditObjectV1Response;
use EzmaxApi::Object::UsergroupmembershipGetObjectV2Response;
use EzmaxApi::Object::UsergroupmembershipGetObjectV2ResponseMPayload;
use EzmaxApi::Object::UsergroupmembershipRequest;
use EzmaxApi::Object::UsergroupmembershipRequestCompound;
use EzmaxApi::Object::UsergroupmembershipResponse;
use EzmaxApi::Object::UsergroupmembershipResponseCompound;
use EzmaxApi::Object::UserlogintypeAutocompleteElementResponse;
use EzmaxApi::Object::UserlogintypeGetAutocompleteV2Response;
use EzmaxApi::Object::UserlogintypeGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::UserlogintypeResponse;
use EzmaxApi::Object::UserstagedCreateUserV1Response;
use EzmaxApi::Object::UserstagedCreateUserV1ResponseMPayload;
use EzmaxApi::Object::UserstagedDeleteObjectV1Response;
use EzmaxApi::Object::UserstagedGetListV1Response;
use EzmaxApi::Object::UserstagedGetListV1ResponseMPayload;
use EzmaxApi::Object::UserstagedGetObjectV2Response;
use EzmaxApi::Object::UserstagedGetObjectV2ResponseMPayload;
use EzmaxApi::Object::UserstagedListElement;
use EzmaxApi::Object::UserstagedMapV1Request;
use EzmaxApi::Object::UserstagedMapV1Response;
use EzmaxApi::Object::UserstagedResponse;
use EzmaxApi::Object::UserstagedResponseCompound;
use EzmaxApi::Object::VariableexpenseAutocompleteElementResponse;
use EzmaxApi::Object::VariableexpenseCreateObjectV1Request;
use EzmaxApi::Object::VariableexpenseCreateObjectV1Response;
use EzmaxApi::Object::VariableexpenseCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::VariableexpenseEditObjectV1Request;
use EzmaxApi::Object::VariableexpenseEditObjectV1Response;
use EzmaxApi::Object::VariableexpenseGetAutocompleteV2Response;
use EzmaxApi::Object::VariableexpenseGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::VariableexpenseGetListV1Response;
use EzmaxApi::Object::VariableexpenseGetListV1ResponseMPayload;
use EzmaxApi::Object::VariableexpenseGetObjectV2Response;
use EzmaxApi::Object::VariableexpenseGetObjectV2ResponseMPayload;
use EzmaxApi::Object::VariableexpenseListElement;
use EzmaxApi::Object::VariableexpenseRequest;
use EzmaxApi::Object::VariableexpenseRequestCompound;
use EzmaxApi::Object::VariableexpenseResponse;
use EzmaxApi::Object::VariableexpenseResponseCompound;
use EzmaxApi::Object::VersionhistoryGetObjectV2Response;
use EzmaxApi::Object::VersionhistoryGetObjectV2ResponseMPayload;
use EzmaxApi::Object::VersionhistoryResponse;
use EzmaxApi::Object::VersionhistoryResponseCompound;
use EzmaxApi::Object::WebhookCreateObjectV2Request;
use EzmaxApi::Object::WebhookCreateObjectV2Response;
use EzmaxApi::Object::WebhookCreateObjectV2ResponseMPayload;
use EzmaxApi::Object::WebhookDeleteObjectV1Response;
use EzmaxApi::Object::WebhookEditObjectV1Request;
use EzmaxApi::Object::WebhookEditObjectV1Response;
use EzmaxApi::Object::WebhookEzsignDocumentCompleted;
use EzmaxApi::Object::WebhookEzsignDocumentFormCompleted;
use EzmaxApi::Object::WebhookEzsignDocumentUnsent;
use EzmaxApi::Object::WebhookEzsignEzsignsignerAcceptclause;
use EzmaxApi::Object::WebhookEzsignEzsignsignerConnect;
use EzmaxApi::Object::WebhookEzsignFolderCompleted;
use EzmaxApi::Object::WebhookEzsignFolderDisposed;
use EzmaxApi::Object::WebhookEzsignFolderSent;
use EzmaxApi::Object::WebhookEzsignFolderUnsent;
use EzmaxApi::Object::WebhookEzsignSignatureSigned;
use EzmaxApi::Object::WebhookGetHistoryV1Response;
use EzmaxApi::Object::WebhookGetHistoryV1ResponseMPayload;
use EzmaxApi::Object::WebhookGetListV1Response;
use EzmaxApi::Object::WebhookGetListV1ResponseMPayload;
use EzmaxApi::Object::WebhookGetObjectV2Response;
use EzmaxApi::Object::WebhookGetObjectV2ResponseMPayload;
use EzmaxApi::Object::WebhookListElement;
use EzmaxApi::Object::WebhookRegenerateApikeyV1Request;
use EzmaxApi::Object::WebhookRegenerateApikeyV1Response;
use EzmaxApi::Object::WebhookRegenerateApikeyV1ResponseMPayload;
use EzmaxApi::Object::WebhookRequest;
use EzmaxApi::Object::WebhookRequestCompound;
use EzmaxApi::Object::WebhookResponse;
use EzmaxApi::Object::WebhookResponseCompound;
use EzmaxApi::Object::WebhookTestV1Response;
use EzmaxApi::Object::WebhookUserUserCreated;
use EzmaxApi::Object::WebhookUserstagedUserstagedCreated;
use EzmaxApi::Object::WebhookheaderRequest;
use EzmaxApi::Object::WebhookheaderRequestCompound;
use EzmaxApi::Object::WebhookheaderResponse;
use EzmaxApi::Object::WebhookheaderResponseCompound;
use EzmaxApi::Object::WebsiteRequest;
use EzmaxApi::Object::WebsiteRequestCompound;
use EzmaxApi::Object::WebsocketRequestServerGetWebsocketIDV1;
use EzmaxApi::Object::WebsocketResponseErrorV1;
use EzmaxApi::Object::WebsocketResponseErrorV1MPayload;
use EzmaxApi::Object::WebsocketResponseGetWebsocketIDV1;
use EzmaxApi::Object::WebsocketResponseGetWebsocketIDV1MPayload;
use EzmaxApi::Object::WebsocketResponseInformationV1;
use EzmaxApi::Object::WebsocketResponseInformationV1MPayload;
Put the Perl SDK under the 'lib' folder in your project directory, then run the following
#!/usr/bin/perl
use lib 'lib';
use strict;
use warnings;
# load the API package
use EzmaxApi::GlobalCustomerApi;
use EzmaxApi::GlobalEzmaxclientApi;
use EzmaxApi::GlobalEzmaxcustomerApi;
use EzmaxApi::ModuleEzsignApi;
use EzmaxApi::ModuleReportApi;
use EzmaxApi::ModuleUserApi;
use EzmaxApi::ObjectActivesessionApi;
use EzmaxApi::ObjectApikeyApi;
use EzmaxApi::ObjectAttachmentApi;
use EzmaxApi::ObjectBillingentityexternalApi;
use EzmaxApi::ObjectBillingentityinternalApi;
use EzmaxApi::ObjectBrandingApi;
use EzmaxApi::ObjectBuyercontractApi;
use EzmaxApi::ObjectClonehistoryApi;
use EzmaxApi::ObjectCommunicationApi;
use EzmaxApi::ObjectCompanyApi;
use EzmaxApi::ObjectCorsApi;
use EzmaxApi::ObjectCountryApi;
use EzmaxApi::ObjectCreditcardclientApi;
use EzmaxApi::ObjectCreditcardtypeApi;
use EzmaxApi::ObjectDepartmentApi;
use EzmaxApi::ObjectDiscussionApi;
use EzmaxApi::ObjectDiscussionmembershipApi;
use EzmaxApi::ObjectDiscussionmessageApi;
use EzmaxApi::ObjectElectronicfundstransferApi;
use EzmaxApi::ObjectEmailtypeApi;
use EzmaxApi::ObjectEzmaxinvoicingApi;
use EzmaxApi::ObjectEzmaxproductApi;
use EzmaxApi::ObjectEzsignbulksendApi;
use EzmaxApi::ObjectEzsignbulksenddocumentmappingApi;
use EzmaxApi::ObjectEzsignbulksendsignermappingApi;
use EzmaxApi::ObjectEzsignbulksendtransmissionApi;
use EzmaxApi::ObjectEzsigndiscussionApi;
use EzmaxApi::ObjectEzsigndocumentApi;
use EzmaxApi::ObjectEzsignfolderApi;
use EzmaxApi::ObjectEzsignfoldersignerassociationApi;
use EzmaxApi::ObjectEzsignfoldertypeApi;
use EzmaxApi::ObjectEzsignformfieldgroupApi;
use EzmaxApi::ObjectEzsignpageApi;
use EzmaxApi::ObjectEzsignsignatureApi;
use EzmaxApi::ObjectEzsignsignergroupApi;
use EzmaxApi::ObjectEzsignsignergroupmembershipApi;
use EzmaxApi::ObjectEzsignsigningreasonApi;
use EzmaxApi::ObjectEzsigntemplateApi;
use EzmaxApi::ObjectEzsigntemplatedocumentApi;
use EzmaxApi::ObjectEzsigntemplateformfieldgroupApi;
use EzmaxApi::ObjectEzsigntemplateglobalApi;
use EzmaxApi::ObjectEzsigntemplatepackageApi;
use EzmaxApi::ObjectEzsigntemplatepackagemembershipApi;
use EzmaxApi::ObjectEzsigntemplatepackagesignerApi;
use EzmaxApi::ObjectEzsigntemplatepackagesignermembershipApi;
use EzmaxApi::ObjectEzsigntemplatesignatureApi;
use EzmaxApi::ObjectEzsigntemplatesignerApi;
use EzmaxApi::ObjectEzsigntsarequirementApi;
use EzmaxApi::ObjectFontApi;
use EzmaxApi::ObjectFranchisebrokerApi;
use EzmaxApi::ObjectFranchiseofficeApi;
use EzmaxApi::ObjectFranchisereferalincomeApi;
use EzmaxApi::ObjectInscriptionApi;
use EzmaxApi::ObjectInscriptionnotauthenticatedApi;
use EzmaxApi::ObjectInscriptiontempApi;
use EzmaxApi::ObjectInvoiceApi;
use EzmaxApi::ObjectLanguageApi;
use EzmaxApi::ObjectModuleApi;
use EzmaxApi::ObjectModulegroupApi;
use EzmaxApi::ObjectNotificationsectionApi;
use EzmaxApi::ObjectNotificationtestApi;
use EzmaxApi::ObjectOtherincomeApi;
use EzmaxApi::ObjectPaymenttermApi;
use EzmaxApi::ObjectPeriodApi;
use EzmaxApi::ObjectPermissionApi;
use EzmaxApi::ObjectPhonetypeApi;
use EzmaxApi::ObjectProvinceApi;
use EzmaxApi::ObjectRejectedoffertopurchaseApi;
use EzmaxApi::ObjectSecretquestionApi;
use EzmaxApi::ObjectSessionhistoryApi;
use EzmaxApi::ObjectSignatureApi;
use EzmaxApi::ObjectSubnetApi;
use EzmaxApi::ObjectSystemconfigurationApi;
use EzmaxApi::ObjectTaxassignmentApi;
use EzmaxApi::ObjectTimezoneApi;
use EzmaxApi::ObjectUserApi;
use EzmaxApi::ObjectUsergroupApi;
use EzmaxApi::ObjectUsergroupdelegationApi;
use EzmaxApi::ObjectUsergroupexternalApi;
use EzmaxApi::ObjectUsergroupmembershipApi;
use EzmaxApi::ObjectUserlogintypeApi;
use EzmaxApi::ObjectUserstagedApi;
use EzmaxApi::ObjectVariableexpenseApi;
use EzmaxApi::ObjectVersionhistoryApi;
use EzmaxApi::ObjectWebhookApi;
use EzmaxApi::ScimGroupsApi;
use EzmaxApi::ScimServiceProviderConfigApi;
use EzmaxApi::ScimUsersApi;
# load the models
use EzmaxApi::Object::ActivesessionGetCurrentV1Response;
use EzmaxApi::Object::ActivesessionGetCurrentV1ResponseMPayload;
use EzmaxApi::Object::ActivesessionGetListV1Response;
use EzmaxApi::Object::ActivesessionGetListV1ResponseMPayload;
use EzmaxApi::Object::ActivesessionListElement;
use EzmaxApi::Object::ActivesessionResponse;
use EzmaxApi::Object::ActivesessionResponseCompound;
use EzmaxApi::Object::ActivesessionResponseCompoundApikey;
use EzmaxApi::Object::ActivesessionResponseCompoundUser;
use EzmaxApi::Object::AddressRequest;
use EzmaxApi::Object::AddressRequestCompound;
use EzmaxApi::Object::ApikeyCreateObjectV2Request;
use EzmaxApi::Object::ApikeyCreateObjectV2Response;
use EzmaxApi::Object::ApikeyCreateObjectV2ResponseMPayload;
use EzmaxApi::Object::ApikeyEditObjectV1Request;
use EzmaxApi::Object::ApikeyEditObjectV1Response;
use EzmaxApi::Object::ApikeyEditPermissionsV1Request;
use EzmaxApi::Object::ApikeyEditPermissionsV1Response;
use EzmaxApi::Object::ApikeyEditPermissionsV1ResponseMPayload;
use EzmaxApi::Object::ApikeyGetCorsV1Response;
use EzmaxApi::Object::ApikeyGetCorsV1ResponseMPayload;
use EzmaxApi::Object::ApikeyGetListV1Response;
use EzmaxApi::Object::ApikeyGetListV1ResponseMPayload;
use EzmaxApi::Object::ApikeyGetObjectV2Response;
use EzmaxApi::Object::ApikeyGetObjectV2ResponseMPayload;
use EzmaxApi::Object::ApikeyGetPermissionsV1Response;
use EzmaxApi::Object::ApikeyGetPermissionsV1ResponseMPayload;
use EzmaxApi::Object::ApikeyGetSubnetsV1Response;
use EzmaxApi::Object::ApikeyGetSubnetsV1ResponseMPayload;
use EzmaxApi::Object::ApikeyListElement;
use EzmaxApi::Object::ApikeyRegenerateV1Request;
use EzmaxApi::Object::ApikeyRegenerateV1Response;
use EzmaxApi::Object::ApikeyRegenerateV1ResponseMPayload;
use EzmaxApi::Object::ApikeyRequest;
use EzmaxApi::Object::ApikeyRequestCompound;
use EzmaxApi::Object::ApikeyResponse;
use EzmaxApi::Object::ApikeyResponseCompound;
use EzmaxApi::Object::AttachmentGetAttachmentlogsV1Response;
use EzmaxApi::Object::AttachmentGetAttachmentlogsV1ResponseMPayload;
use EzmaxApi::Object::AttachmentGetDownloadUrlV1Response;
use EzmaxApi::Object::AttachmentGetDownloadUrlV1ResponseMPayload;
use EzmaxApi::Object::AttachmentResponse;
use EzmaxApi::Object::AttachmentResponseCompound;
use EzmaxApi::Object::AttachmentlogResponse;
use EzmaxApi::Object::AttachmentlogResponseCompound;
use EzmaxApi::Object::AttemptResponse;
use EzmaxApi::Object::AttemptResponseCompound;
use EzmaxApi::Object::BillingentityexternalAutocompleteElementResponse;
use EzmaxApi::Object::BillingentityexternalGetAutocompleteV2Response;
use EzmaxApi::Object::BillingentityexternalGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::BillingentityinternalAutocompleteElementResponse;
use EzmaxApi::Object::BillingentityinternalCreateObjectV1Request;
use EzmaxApi::Object::BillingentityinternalCreateObjectV1Response;
use EzmaxApi::Object::BillingentityinternalCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::BillingentityinternalEditObjectV1Request;
use EzmaxApi::Object::BillingentityinternalEditObjectV1Response;
use EzmaxApi::Object::BillingentityinternalGetAutocompleteV2Response;
use EzmaxApi::Object::BillingentityinternalGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::BillingentityinternalGetListV1Response;
use EzmaxApi::Object::BillingentityinternalGetListV1ResponseMPayload;
use EzmaxApi::Object::BillingentityinternalGetObjectV2Response;
use EzmaxApi::Object::BillingentityinternalGetObjectV2ResponseMPayload;
use EzmaxApi::Object::BillingentityinternalListElement;
use EzmaxApi::Object::BillingentityinternalRequest;
use EzmaxApi::Object::BillingentityinternalRequestCompound;
use EzmaxApi::Object::BillingentityinternalResponse;
use EzmaxApi::Object::BillingentityinternalResponseCompound;
use EzmaxApi::Object::BillingentityinternalproductRequest;
use EzmaxApi::Object::BillingentityinternalproductRequestCompound;
use EzmaxApi::Object::BillingentityinternalproductResponse;
use EzmaxApi::Object::BillingentityinternalproductResponseCompound;
use EzmaxApi::Object::BrandingAutocompleteElementResponse;
use EzmaxApi::Object::BrandingCreateObjectV1Request;
use EzmaxApi::Object::BrandingCreateObjectV1Response;
use EzmaxApi::Object::BrandingCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::BrandingEditObjectV1Request;
use EzmaxApi::Object::BrandingEditObjectV1Response;
use EzmaxApi::Object::BrandingGetAutocompleteV2Response;
use EzmaxApi::Object::BrandingGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::BrandingGetListV1Response;
use EzmaxApi::Object::BrandingGetListV1ResponseMPayload;
use EzmaxApi::Object::BrandingGetObjectV2Response;
use EzmaxApi::Object::BrandingGetObjectV2ResponseMPayload;
use EzmaxApi::Object::BrandingListElement;
use EzmaxApi::Object::BrandingRequest;
use EzmaxApi::Object::BrandingRequestCompound;
use EzmaxApi::Object::BrandingResponse;
use EzmaxApi::Object::BrandingResponseCompound;
use EzmaxApi::Object::BuyercontractGetCommunicationListV1Response;
use EzmaxApi::Object::BuyercontractGetCommunicationListV1ResponseMPayload;
use EzmaxApi::Object::ClonehistoryGetListV1Response;
use EzmaxApi::Object::ClonehistoryGetListV1ResponseMPayload;
use EzmaxApi::Object::ClonehistoryListElement;
use EzmaxApi::Object::CommonAudit;
use EzmaxApi::Object::CommonAuditdetail;
use EzmaxApi::Object::CommonFile;
use EzmaxApi::Object::CommonGetListV1ResponseMPayload;
use EzmaxApi::Object::CommonGetReportV1Response;
use EzmaxApi::Object::CommonGetReportV1ResponseMPayload;
use EzmaxApi::Object::CommonReport;
use EzmaxApi::Object::CommonReportcell;
use EzmaxApi::Object::CommonReportcellstyle;
use EzmaxApi::Object::CommonReportcolumn;
use EzmaxApi::Object::CommonReportgroup;
use EzmaxApi::Object::CommonReportrow;
use EzmaxApi::Object::CommonReportsection;
use EzmaxApi::Object::CommonReportsubsection;
use EzmaxApi::Object::CommonReportsubsectionpart;
use EzmaxApi::Object::CommonResponse;
use EzmaxApi::Object::CommonResponseError;
use EzmaxApi::Object::CommonResponseErrorEzsignformValidation;
use EzmaxApi::Object::CommonResponseErrorSTemporaryFileUrl;
use EzmaxApi::Object::CommonResponseErrorTooManyRequests;
use EzmaxApi::Object::CommonResponseFilter;
use EzmaxApi::Object::CommonResponseGetList;
use EzmaxApi::Object::CommonResponseObjDebug;
use EzmaxApi::Object::CommonResponseObjDebugPayload;
use EzmaxApi::Object::CommonResponseObjDebugPayloadGetList;
use EzmaxApi::Object::CommonResponseObjSQLQuery;
use EzmaxApi::Object::CommonResponseRedirectSSecretquestionTextX;
use EzmaxApi::Object::CommonResponseWarning;
use EzmaxApi::Object::CommonWebhook;
use EzmaxApi::Object::CommunicationCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::CommunicationRequest;
use EzmaxApi::Object::CommunicationRequestCompound;
use EzmaxApi::Object::CommunicationSendV1Request;
use EzmaxApi::Object::CommunicationSendV1Response;
use EzmaxApi::Object::CommunicationattachmentRequest;
use EzmaxApi::Object::CommunicationattachmentRequestCompound;
use EzmaxApi::Object::CommunicationexternalrecipientRequest;
use EzmaxApi::Object::CommunicationexternalrecipientRequestCompound;
use EzmaxApi::Object::CommunicationrecipientRequest;
use EzmaxApi::Object::CommunicationrecipientRequestCompound;
use EzmaxApi::Object::CommunicationreferenceRequest;
use EzmaxApi::Object::CommunicationreferenceRequestCompound;
use EzmaxApi::Object::CompanyAutocompleteElementResponse;
use EzmaxApi::Object::CompanyGetAutocompleteV2Response;
use EzmaxApi::Object::CompanyGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::ComputedECommunicationDirection;
use EzmaxApi::Object::ComputedEEzsigndocumentSteptype;
use EzmaxApi::Object::ContactRequest;
use EzmaxApi::Object::ContactRequestCompound;
use EzmaxApi::Object::ContactinformationsRequest;
use EzmaxApi::Object::ContactinformationsRequestCompound;
use EzmaxApi::Object::CorsCreateObjectV1Request;
use EzmaxApi::Object::CorsCreateObjectV1Response;
use EzmaxApi::Object::CorsCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::CorsDeleteObjectV1Response;
use EzmaxApi::Object::CorsEditObjectV1Request;
use EzmaxApi::Object::CorsEditObjectV1Response;
use EzmaxApi::Object::CorsGetObjectV2Response;
use EzmaxApi::Object::CorsGetObjectV2ResponseMPayload;
use EzmaxApi::Object::CorsRequest;
use EzmaxApi::Object::CorsRequestCompound;
use EzmaxApi::Object::CorsResponse;
use EzmaxApi::Object::CorsResponseCompound;
use EzmaxApi::Object::CountryAutocompleteElementResponse;
use EzmaxApi::Object::CountryGetAutocompleteV2Response;
use EzmaxApi::Object::CountryGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::CreditcardclientAutocompleteElementResponse;
use EzmaxApi::Object::CreditcardclientCreateObjectV1Request;
use EzmaxApi::Object::CreditcardclientCreateObjectV1Response;
use EzmaxApi::Object::CreditcardclientCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::CreditcardclientDeleteObjectV1Response;
use EzmaxApi::Object::CreditcardclientEditObjectV1Request;
use EzmaxApi::Object::CreditcardclientEditObjectV1Response;
use EzmaxApi::Object::CreditcardclientGetAutocompleteV2Response;
use EzmaxApi::Object::CreditcardclientGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::CreditcardclientGetListV1Response;
use EzmaxApi::Object::CreditcardclientGetListV1ResponseMPayload;
use EzmaxApi::Object::CreditcardclientGetObjectV2Response;
use EzmaxApi::Object::CreditcardclientGetObjectV2ResponseMPayload;
use EzmaxApi::Object::CreditcardclientListElement;
use EzmaxApi::Object::CreditcardclientRequest;
use EzmaxApi::Object::CreditcardclientRequestCompound;
use EzmaxApi::Object::CreditcardclientResponse;
use EzmaxApi::Object::CreditcardclientResponseCompound;
use EzmaxApi::Object::CreditcarddetailRequest;
use EzmaxApi::Object::CreditcarddetailResponse;
use EzmaxApi::Object::CreditcarddetailResponseCompound;
use EzmaxApi::Object::CreditcardtypeAutocompleteElementResponse;
use EzmaxApi::Object::CreditcardtypeGetAutocompleteV2Response;
use EzmaxApi::Object::CreditcardtypeGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::CustomAttachmentResponse;
use EzmaxApi::Object::CustomAttachmentdocumenttypeResponse;
use EzmaxApi::Object::CustomCommunicationListElementResponse;
use EzmaxApi::Object::CustomCommunicationattachmentRequest;
use EzmaxApi::Object::CustomCommunicationrecipientsgroupResponse;
use EzmaxApi::Object::CustomCommunicationrecipientsrecipientResponse;
use EzmaxApi::Object::CustomCommunicationsenderRequest;
use EzmaxApi::Object::CustomCommunicationsenderResponse;
use EzmaxApi::Object::CustomContactNameResponse;
use EzmaxApi::Object::CustomCreateEzsignelementsPositionedByWordRequest;
use EzmaxApi::Object::CustomCreditcardtransactionResponse;
use EzmaxApi::Object::CustomDiscussionconfigurationResponse;
use EzmaxApi::Object::CustomDropdownElementRequest;
use EzmaxApi::Object::CustomDropdownElementRequestCompound;
use EzmaxApi::Object::CustomDropdownElementResponse;
use EzmaxApi::Object::CustomDropdownElementResponseCompound;
use EzmaxApi::Object::CustomEzmaxinvoicingEzsigndocumentResponse;
use EzmaxApi::Object::CustomEzmaxinvoicingEzsignfolderResponse;
use EzmaxApi::Object::CustomEzmaxpricingResponse;
use EzmaxApi::Object::CustomEzsigndocumentEzsignsignaturesAutomaticResponse;
use EzmaxApi::Object::CustomEzsignfolderEzsignsignaturesAutomaticResponse;
use EzmaxApi::Object::CustomEzsignfoldersignerassociationActionableElementResponse;
use EzmaxApi::Object::CustomEzsignfoldersignerassociationstatusResponse;
use EzmaxApi::Object::CustomEzsignfoldertransmissionResponse;
use EzmaxApi::Object::CustomEzsignfoldertransmissionSignerResponse;
use EzmaxApi::Object::CustomEzsignfoldertypeResponse;
use EzmaxApi::Object::CustomEzsignformfieldRequest;
use EzmaxApi::Object::CustomEzsignformfielderrorResponse;
use EzmaxApi::Object::CustomEzsignformfielderrortestResponse;
use EzmaxApi::Object::CustomEzsignformfieldgroupCreateEzsignelementsPositionedByWordRequest;
use EzmaxApi::Object::CustomEzsignformfieldgroupRequest;
use EzmaxApi::Object::CustomEzsignsignatureCreateEzsignelementsPositionedByWordRequest;
use EzmaxApi::Object::CustomEzsignsignatureEzsignsignaturesAutomaticResponse;
use EzmaxApi::Object::CustomEzsignsignaturestatusResponse;
use EzmaxApi::Object::CustomFormDataDocumentResponse;
use EzmaxApi::Object::CustomFormDataEzsignformfieldResponse;
use EzmaxApi::Object::CustomFormDataEzsignformfieldgroupResponse;
use EzmaxApi::Object::CustomFormDataSignerResponse;
use EzmaxApi::Object::CustomFormsDataFolderResponse;
use EzmaxApi::Object::CustomImportEzsigntemplatepackageRelationRequest;
use EzmaxApi::Object::CustomNotificationsubsectiongetnotificationtestsResponse;
use EzmaxApi::Object::CustomNotificationtestgetnotificationtestsResponse;
use EzmaxApi::Object::CustomUserResponse;
use EzmaxApi::Object::CustomWebhookResponse;
use EzmaxApi::Object::CustomWebhooklogResponse;
use EzmaxApi::Object::CustomWordPositionOccurenceResponse;
use EzmaxApi::Object::CustomWordPositionWordResponse;
use EzmaxApi::Object::DepartmentAutocompleteElementResponse;
use EzmaxApi::Object::DepartmentGetAutocompleteV2Response;
use EzmaxApi::Object::DepartmentGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::DiscussionCreateObjectV1Request;
use EzmaxApi::Object::DiscussionCreateObjectV1Response;
use EzmaxApi::Object::DiscussionCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::DiscussionDeleteObjectV1Response;
use EzmaxApi::Object::DiscussionGetObjectV2Response;
use EzmaxApi::Object::DiscussionGetObjectV2ResponseMPayload;
use EzmaxApi::Object::DiscussionPatchObjectV1Request;
use EzmaxApi::Object::DiscussionPatchObjectV1Response;
use EzmaxApi::Object::DiscussionRequest;
use EzmaxApi::Object::DiscussionRequestCompound;
use EzmaxApi::Object::DiscussionRequestPatch;
use EzmaxApi::Object::DiscussionResponse;
use EzmaxApi::Object::DiscussionResponseCompound;
use EzmaxApi::Object::DiscussionUpdateDiscussionreadstatusV1Request;
use EzmaxApi::Object::DiscussionUpdateDiscussionreadstatusV1Response;
use EzmaxApi::Object::DiscussionmembershipCreateObjectV1Request;
use EzmaxApi::Object::DiscussionmembershipCreateObjectV1Response;
use EzmaxApi::Object::DiscussionmembershipCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::DiscussionmembershipDeleteObjectV1Response;
use EzmaxApi::Object::DiscussionmembershipRequest;
use EzmaxApi::Object::DiscussionmembershipRequestCompound;
use EzmaxApi::Object::DiscussionmembershipResponse;
use EzmaxApi::Object::DiscussionmembershipResponseCompound;
use EzmaxApi::Object::DiscussionmessageCreateObjectV1Request;
use EzmaxApi::Object::DiscussionmessageCreateObjectV1Response;
use EzmaxApi::Object::DiscussionmessageCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::DiscussionmessageDeleteObjectV1Response;
use EzmaxApi::Object::DiscussionmessagePatchObjectV1Request;
use EzmaxApi::Object::DiscussionmessagePatchObjectV1Response;
use EzmaxApi::Object::DiscussionmessageRequest;
use EzmaxApi::Object::DiscussionmessageRequestCompound;
use EzmaxApi::Object::DiscussionmessageRequestPatch;
use EzmaxApi::Object::DiscussionmessageResponse;
use EzmaxApi::Object::DiscussionmessageResponseCompound;
use EzmaxApi::Object::ElectronicfundstransferGetCommunicationListV1Response;
use EzmaxApi::Object::ElectronicfundstransferGetCommunicationListV1ResponseMPayload;
use EzmaxApi::Object::EmailRequest;
use EzmaxApi::Object::EmailRequestCompound;
use EzmaxApi::Object::EmailResponse;
use EzmaxApi::Object::EmailResponseCompound;
use EzmaxApi::Object::EmailtypeAutocompleteElementResponse;
use EzmaxApi::Object::EmailtypeGetAutocompleteV2Response;
use EzmaxApi::Object::EmailtypeGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::EnumFontunderline;
use EzmaxApi::Object::EnumFontweight;
use EzmaxApi::Object::EnumHorizontalalignment;
use EzmaxApi::Object::EnumTextvalidation;
use EzmaxApi::Object::EnumVerticalalignment;
use EzmaxApi::Object::EzmaxinvoicingAutocompleteElementResponse;
use EzmaxApi::Object::EzmaxinvoicingGetAutocompleteV2Response;
use EzmaxApi::Object::EzmaxinvoicingGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::EzmaxinvoicingGetObjectV2Response;
use EzmaxApi::Object::EzmaxinvoicingGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzmaxinvoicingGetProvisionalV1Response;
use EzmaxApi::Object::EzmaxinvoicingGetProvisionalV1ResponseMPayload;
use EzmaxApi::Object::EzmaxinvoicingResponse;
use EzmaxApi::Object::EzmaxinvoicingResponseCompound;
use EzmaxApi::Object::EzmaxinvoicingagentResponse;
use EzmaxApi::Object::EzmaxinvoicingagentResponseCompound;
use EzmaxApi::Object::EzmaxinvoicingcommissionResponse;
use EzmaxApi::Object::EzmaxinvoicingcommissionResponseCompound;
use EzmaxApi::Object::EzmaxinvoicingcontractResponse;
use EzmaxApi::Object::EzmaxinvoicingcontractResponseCompound;
use EzmaxApi::Object::EzmaxinvoicingsummaryexternalResponse;
use EzmaxApi::Object::EzmaxinvoicingsummaryexternalResponseCompound;
use EzmaxApi::Object::EzmaxinvoicingsummaryexternaldetailResponse;
use EzmaxApi::Object::EzmaxinvoicingsummaryexternaldetailResponseCompound;
use EzmaxApi::Object::EzmaxinvoicingsummaryglobalResponse;
use EzmaxApi::Object::EzmaxinvoicingsummaryglobalResponseCompound;
use EzmaxApi::Object::EzmaxinvoicingsummaryinternalResponse;
use EzmaxApi::Object::EzmaxinvoicingsummaryinternalResponseCompound;
use EzmaxApi::Object::EzmaxinvoicingsummaryinternaldetailResponse;
use EzmaxApi::Object::EzmaxinvoicingsummaryinternaldetailResponseCompound;
use EzmaxApi::Object::EzmaxinvoicinguserResponse;
use EzmaxApi::Object::EzmaxinvoicinguserResponseCompound;
use EzmaxApi::Object::EzmaxproductAutocompleteElementResponse;
use EzmaxApi::Object::EzmaxproductGetAutocompleteV2Response;
use EzmaxApi::Object::EzmaxproductGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::EzsignSuggestSignersV1Response;
use EzmaxApi::Object::EzsignSuggestSignersV1ResponseMPayload;
use EzmaxApi::Object::EzsignSuggestTemplatesV1Response;
use EzmaxApi::Object::EzsignSuggestTemplatesV1ResponseMPayload;
use EzmaxApi::Object::EzsignannotationResponse;
use EzmaxApi::Object::EzsignannotationResponseCompound;
use EzmaxApi::Object::EzsignbulksendCreateEzsignbulksendtransmissionV1Request;
use EzmaxApi::Object::EzsignbulksendCreateEzsignbulksendtransmissionV1Response;
use EzmaxApi::Object::EzsignbulksendCreateEzsignbulksendtransmissionV1ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendCreateObjectV1Request;
use EzmaxApi::Object::EzsignbulksendCreateObjectV1Response;
use EzmaxApi::Object::EzsignbulksendCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendDeleteObjectV1Response;
use EzmaxApi::Object::EzsignbulksendEditObjectV1Request;
use EzmaxApi::Object::EzsignbulksendEditObjectV1Response;
use EzmaxApi::Object::EzsignbulksendGetEzsignbulksendtransmissionsV1Response;
use EzmaxApi::Object::EzsignbulksendGetEzsignbulksendtransmissionsV1ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendGetEzsignsignaturesAutomaticV1Response;
use EzmaxApi::Object::EzsignbulksendGetEzsignsignaturesAutomaticV1ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendGetFormsDataV1Response;
use EzmaxApi::Object::EzsignbulksendGetFormsDataV1ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendGetListV1Response;
use EzmaxApi::Object::EzsignbulksendGetListV1ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendGetObjectV2Response;
use EzmaxApi::Object::EzsignbulksendGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendListElement;
use EzmaxApi::Object::EzsignbulksendReorderV1Request;
use EzmaxApi::Object::EzsignbulksendReorderV1Response;
use EzmaxApi::Object::EzsignbulksendRequest;
use EzmaxApi::Object::EzsignbulksendRequestCompound;
use EzmaxApi::Object::EzsignbulksendResponse;
use EzmaxApi::Object::EzsignbulksendResponseCompound;
use EzmaxApi::Object::EzsignbulksenddocumentmappingCreateObjectV1Request;
use EzmaxApi::Object::EzsignbulksenddocumentmappingCreateObjectV1Response;
use EzmaxApi::Object::EzsignbulksenddocumentmappingCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignbulksenddocumentmappingDeleteObjectV1Response;
use EzmaxApi::Object::EzsignbulksenddocumentmappingGetObjectV2Response;
use EzmaxApi::Object::EzsignbulksenddocumentmappingGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignbulksenddocumentmappingRequest;
use EzmaxApi::Object::EzsignbulksenddocumentmappingRequestCompound;
use EzmaxApi::Object::EzsignbulksenddocumentmappingResponse;
use EzmaxApi::Object::EzsignbulksenddocumentmappingResponseCompound;
use EzmaxApi::Object::EzsignbulksendsignermappingCreateObjectV1Request;
use EzmaxApi::Object::EzsignbulksendsignermappingCreateObjectV1Response;
use EzmaxApi::Object::EzsignbulksendsignermappingCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendsignermappingDeleteObjectV1Response;
use EzmaxApi::Object::EzsignbulksendsignermappingGetObjectV2Response;
use EzmaxApi::Object::EzsignbulksendsignermappingGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendsignermappingRequest;
use EzmaxApi::Object::EzsignbulksendsignermappingRequestCompound;
use EzmaxApi::Object::EzsignbulksendsignermappingResponse;
use EzmaxApi::Object::EzsignbulksendsignermappingResponseCompound;
use EzmaxApi::Object::EzsignbulksendtransmissionGetEzsignsignaturesAutomaticV1Response;
use EzmaxApi::Object::EzsignbulksendtransmissionGetEzsignsignaturesAutomaticV1ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendtransmissionGetFormsDataV1Response;
use EzmaxApi::Object::EzsignbulksendtransmissionGetFormsDataV1ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendtransmissionGetObjectV2Response;
use EzmaxApi::Object::EzsignbulksendtransmissionGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignbulksendtransmissionResponse;
use EzmaxApi::Object::EzsignbulksendtransmissionResponseCompound;
use EzmaxApi::Object::EzsigndiscussionCreateObjectV1Request;
use EzmaxApi::Object::EzsigndiscussionCreateObjectV1Response;
use EzmaxApi::Object::EzsigndiscussionCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigndiscussionDeleteObjectV1Response;
use EzmaxApi::Object::EzsigndiscussionGetObjectV2Response;
use EzmaxApi::Object::EzsigndiscussionGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigndiscussionRequest;
use EzmaxApi::Object::EzsigndiscussionRequestCompound;
use EzmaxApi::Object::EzsigndiscussionResponse;
use EzmaxApi::Object::EzsigndiscussionResponseCompound;
use EzmaxApi::Object::EzsigndocumentApplyEzsigntemplateV1Request;
use EzmaxApi::Object::EzsigndocumentApplyEzsigntemplateV1Response;
use EzmaxApi::Object::EzsigndocumentApplyEzsigntemplateV2Request;
use EzmaxApi::Object::EzsigndocumentApplyEzsigntemplateV2Response;
use EzmaxApi::Object::EzsigndocumentApplyEzsigntemplateglobalV1Request;
use EzmaxApi::Object::EzsigndocumentApplyEzsigntemplateglobalV1Response;
use EzmaxApi::Object::EzsigndocumentCreateEzsignelementsPositionedByWordV1Request;
use EzmaxApi::Object::EzsigndocumentCreateEzsignelementsPositionedByWordV1Response;
use EzmaxApi::Object::EzsigndocumentCreateEzsignelementsPositionedByWordV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentCreateObjectV1Request;
use EzmaxApi::Object::EzsigndocumentCreateObjectV1Response;
use EzmaxApi::Object::EzsigndocumentCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentCreateObjectV2Request;
use EzmaxApi::Object::EzsigndocumentCreateObjectV2Response;
use EzmaxApi::Object::EzsigndocumentCreateObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentDeclineToSignV1Request;
use EzmaxApi::Object::EzsigndocumentDeclineToSignV1Response;
use EzmaxApi::Object::EzsigndocumentDeleteObjectV1Response;
use EzmaxApi::Object::EzsigndocumentEditEzsignformfieldgroupsV1Request;
use EzmaxApi::Object::EzsigndocumentEditEzsignformfieldgroupsV1Response;
use EzmaxApi::Object::EzsigndocumentEditEzsignformfieldgroupsV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentEditEzsignsignaturesV1Request;
use EzmaxApi::Object::EzsigndocumentEditEzsignsignaturesV1Response;
use EzmaxApi::Object::EzsigndocumentEditEzsignsignaturesV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentEndPrematurelyV1Response;
use EzmaxApi::Object::EzsigndocumentFlattenV1Response;
use EzmaxApi::Object::EzsigndocumentGetActionableElementsV1Response;
use EzmaxApi::Object::EzsigndocumentGetActionableElementsV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetAttachmentsV1Response;
use EzmaxApi::Object::EzsigndocumentGetAttachmentsV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetCompletedElementsV1Response;
use EzmaxApi::Object::EzsigndocumentGetCompletedElementsV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetDownloadUrlV1Response;
use EzmaxApi::Object::EzsigndocumentGetDownloadUrlV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetEzsignannotationsV1Response;
use EzmaxApi::Object::EzsigndocumentGetEzsignannotationsV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetEzsigndiscussionsV1Response;
use EzmaxApi::Object::EzsigndocumentGetEzsigndiscussionsV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetEzsignformfieldgroupsV1Response;
use EzmaxApi::Object::EzsigndocumentGetEzsignformfieldgroupsV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetEzsignpagesV1Response;
use EzmaxApi::Object::EzsigndocumentGetEzsignpagesV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetEzsignsignaturesAutomaticV1Response;
use EzmaxApi::Object::EzsigndocumentGetEzsignsignaturesAutomaticV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetEzsignsignaturesV1Response;
use EzmaxApi::Object::EzsigndocumentGetEzsignsignaturesV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetFormDataV1Response;
use EzmaxApi::Object::EzsigndocumentGetFormDataV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetObjectV1Response;
use EzmaxApi::Object::EzsigndocumentGetObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetObjectV2Response;
use EzmaxApi::Object::EzsigndocumentGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetTemporaryProofV1Response;
use EzmaxApi::Object::EzsigndocumentGetTemporaryProofV1ResponseMPayload;
use EzmaxApi::Object::EzsigndocumentGetWordsPositionsV1Request;
use EzmaxApi::Object::EzsigndocumentGetWordsPositionsV1Response;
use EzmaxApi::Object::EzsigndocumentPatchObjectV1Request;
use EzmaxApi::Object::EzsigndocumentPatchObjectV1Response;
use EzmaxApi::Object::EzsigndocumentRequest;
use EzmaxApi::Object::EzsigndocumentRequestCompound;
use EzmaxApi::Object::EzsigndocumentRequestPatch;
use EzmaxApi::Object::EzsigndocumentResponse;
use EzmaxApi::Object::EzsigndocumentResponseCompound;
use EzmaxApi::Object::EzsigndocumentSubmitEzsignformV1Request;
use EzmaxApi::Object::EzsigndocumentSubmitEzsignformV1Response;
use EzmaxApi::Object::EzsigndocumentUnsendV1Response;
use EzmaxApi::Object::EzsigndocumentlogResponse;
use EzmaxApi::Object::EzsigndocumentlogResponseCompound;
use EzmaxApi::Object::EzsignelementdependencyRequest;
use EzmaxApi::Object::EzsignelementdependencyRequestCompound;
use EzmaxApi::Object::EzsignelementdependencyResponse;
use EzmaxApi::Object::EzsignelementdependencyResponseCompound;
use EzmaxApi::Object::EzsignfolderArchiveV1Response;
use EzmaxApi::Object::EzsignfolderBatchDownloadV1Request;
use EzmaxApi::Object::EzsignfolderCreateObjectV1Request;
use EzmaxApi::Object::EzsignfolderCreateObjectV1Response;
use EzmaxApi::Object::EzsignfolderCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderCreateObjectV2Request;
use EzmaxApi::Object::EzsignfolderCreateObjectV2Response;
use EzmaxApi::Object::EzsignfolderCreateObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignfolderDeleteObjectV1Response;
use EzmaxApi::Object::EzsignfolderDisposeEzsignfoldersV1Request;
use EzmaxApi::Object::EzsignfolderDisposeEzsignfoldersV1Response;
use EzmaxApi::Object::EzsignfolderDisposeV1Response;
use EzmaxApi::Object::EzsignfolderEditObjectV1Request;
use EzmaxApi::Object::EzsignfolderEditObjectV1Response;
use EzmaxApi::Object::EzsignfolderEndPrematurelyV1Response;
use EzmaxApi::Object::EzsignfolderGetActionableElementsV1Response;
use EzmaxApi::Object::EzsignfolderGetActionableElementsV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetAttachmentCountV1Response;
use EzmaxApi::Object::EzsignfolderGetAttachmentCountV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetAttachmentsV1Response;
use EzmaxApi::Object::EzsignfolderGetAttachmentsV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetCommunicationCountV1Response;
use EzmaxApi::Object::EzsignfolderGetCommunicationCountV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetCommunicationListV1Response;
use EzmaxApi::Object::EzsignfolderGetCommunicationListV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetCommunicationrecipientsV1Response;
use EzmaxApi::Object::EzsignfolderGetCommunicationrecipientsV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetCommunicationsendersV1Response;
use EzmaxApi::Object::EzsignfolderGetCommunicationsendersV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetEzsigndocumentsV1Response;
use EzmaxApi::Object::EzsignfolderGetEzsigndocumentsV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetEzsignfoldersignerassociationsV1Response;
use EzmaxApi::Object::EzsignfolderGetEzsignfoldersignerassociationsV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetEzsignsignaturesAutomaticV1Response;
use EzmaxApi::Object::EzsignfolderGetEzsignsignaturesAutomaticV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetFormsDataV1Response;
use EzmaxApi::Object::EzsignfolderGetFormsDataV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetListV1Response;
use EzmaxApi::Object::EzsignfolderGetListV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetObjectV1Response;
use EzmaxApi::Object::EzsignfolderGetObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderGetObjectV2Response;
use EzmaxApi::Object::EzsignfolderGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignfolderImportEzsignfoldersignerassociationsV1Request;
use EzmaxApi::Object::EzsignfolderImportEzsignfoldersignerassociationsV1Response;
use EzmaxApi::Object::EzsignfolderImportEzsignfoldersignerassociationsV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderImportEzsigntemplatepackageV1Request;
use EzmaxApi::Object::EzsignfolderImportEzsigntemplatepackageV1Response;
use EzmaxApi::Object::EzsignfolderImportEzsigntemplatepackageV1ResponseMPayload;
use EzmaxApi::Object::EzsignfolderListElement;
use EzmaxApi::Object::EzsignfolderReorderV1Request;
use EzmaxApi::Object::EzsignfolderReorderV1Response;
use EzmaxApi::Object::EzsignfolderRequest;
use EzmaxApi::Object::EzsignfolderRequestCompound;
use EzmaxApi::Object::EzsignfolderResponse;
use EzmaxApi::Object::EzsignfolderResponseCompound;
use EzmaxApi::Object::EzsignfolderSendV1Request;
use EzmaxApi::Object::EzsignfolderSendV1Response;
use EzmaxApi::Object::EzsignfolderSendV3Request;
use EzmaxApi::Object::EzsignfolderSendV3Response;
use EzmaxApi::Object::EzsignfolderUnsendV1Response;
use EzmaxApi::Object::EzsignfoldersignerassociationCreateEmbeddedUrlV1Request;
use EzmaxApi::Object::EzsignfoldersignerassociationCreateEmbeddedUrlV1Response;
use EzmaxApi::Object::EzsignfoldersignerassociationCreateEmbeddedUrlV1ResponseMPayload;
use EzmaxApi::Object::EzsignfoldersignerassociationCreateObjectV1Request;
use EzmaxApi::Object::EzsignfoldersignerassociationCreateObjectV1Response;
use EzmaxApi::Object::EzsignfoldersignerassociationCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignfoldersignerassociationCreateObjectV2Request;
use EzmaxApi::Object::EzsignfoldersignerassociationCreateObjectV2Response;
use EzmaxApi::Object::EzsignfoldersignerassociationCreateObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignfoldersignerassociationDeleteObjectV1Response;
use EzmaxApi::Object::EzsignfoldersignerassociationEditObjectV1Request;
use EzmaxApi::Object::EzsignfoldersignerassociationEditObjectV1Response;
use EzmaxApi::Object::EzsignfoldersignerassociationForceDisconnectV1Response;
use EzmaxApi::Object::EzsignfoldersignerassociationGetInPersonLoginUrlV1Response;
use EzmaxApi::Object::EzsignfoldersignerassociationGetInPersonLoginUrlV1ResponseMPayload;
use EzmaxApi::Object::EzsignfoldersignerassociationGetObjectV1Response;
use EzmaxApi::Object::EzsignfoldersignerassociationGetObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignfoldersignerassociationGetObjectV2Response;
use EzmaxApi::Object::EzsignfoldersignerassociationGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignfoldersignerassociationPatchObjectV1Request;
use EzmaxApi::Object::EzsignfoldersignerassociationPatchObjectV1Response;
use EzmaxApi::Object::EzsignfoldersignerassociationRequest;
use EzmaxApi::Object::EzsignfoldersignerassociationRequestCompound;
use EzmaxApi::Object::EzsignfoldersignerassociationRequestPatch;
use EzmaxApi::Object::EzsignfoldersignerassociationResponse;
use EzmaxApi::Object::EzsignfoldersignerassociationResponseCompound;
use EzmaxApi::Object::EzsignfoldersignerassociationResponseCompoundUser;
use EzmaxApi::Object::EzsignfoldertypeAutocompleteElementResponse;
use EzmaxApi::Object::EzsignfoldertypeCreateObjectV2Request;
use EzmaxApi::Object::EzsignfoldertypeCreateObjectV2Response;
use EzmaxApi::Object::EzsignfoldertypeCreateObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignfoldertypeEditObjectV1Request;
use EzmaxApi::Object::EzsignfoldertypeEditObjectV1Response;
use EzmaxApi::Object::EzsignfoldertypeEditObjectV2Request;
use EzmaxApi::Object::EzsignfoldertypeEditObjectV2Response;
use EzmaxApi::Object::EzsignfoldertypeGetAutocompleteV2Response;
use EzmaxApi::Object::EzsignfoldertypeGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::EzsignfoldertypeGetListV1Response;
use EzmaxApi::Object::EzsignfoldertypeGetListV1ResponseMPayload;
use EzmaxApi::Object::EzsignfoldertypeGetObjectV2Response;
use EzmaxApi::Object::EzsignfoldertypeGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignfoldertypeGetObjectV3Response;
use EzmaxApi::Object::EzsignfoldertypeGetObjectV3ResponseMPayload;
use EzmaxApi::Object::EzsignfoldertypeListElement;
use EzmaxApi::Object::EzsignfoldertypeRequest;
use EzmaxApi::Object::EzsignfoldertypeRequestCompound;
use EzmaxApi::Object::EzsignfoldertypeRequestCompoundV2;
use EzmaxApi::Object::EzsignfoldertypeRequestV2;
use EzmaxApi::Object::EzsignfoldertypeResponse;
use EzmaxApi::Object::EzsignfoldertypeResponseCompound;
use EzmaxApi::Object::EzsignfoldertypeResponseCompoundV3;
use EzmaxApi::Object::EzsignfoldertypeResponseV3;
use EzmaxApi::Object::EzsignformfieldRequest;
use EzmaxApi::Object::EzsignformfieldRequestCompound;
use EzmaxApi::Object::EzsignformfieldResponse;
use EzmaxApi::Object::EzsignformfieldResponseCompound;
use EzmaxApi::Object::EzsignformfieldgroupCreateObjectV1Request;
use EzmaxApi::Object::EzsignformfieldgroupCreateObjectV1Response;
use EzmaxApi::Object::EzsignformfieldgroupCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignformfieldgroupDeleteObjectV1Response;
use EzmaxApi::Object::EzsignformfieldgroupEditObjectV1Request;
use EzmaxApi::Object::EzsignformfieldgroupEditObjectV1Response;
use EzmaxApi::Object::EzsignformfieldgroupGetObjectV2Response;
use EzmaxApi::Object::EzsignformfieldgroupGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignformfieldgroupRequest;
use EzmaxApi::Object::EzsignformfieldgroupRequestCompound;
use EzmaxApi::Object::EzsignformfieldgroupResponse;
use EzmaxApi::Object::EzsignformfieldgroupResponseCompound;
use EzmaxApi::Object::EzsignformfieldgroupsignerRequest;
use EzmaxApi::Object::EzsignformfieldgroupsignerRequestCompound;
use EzmaxApi::Object::EzsignformfieldgroupsignerResponse;
use EzmaxApi::Object::EzsignformfieldgroupsignerResponseCompound;
use EzmaxApi::Object::EzsignpageConsultV1Response;
use EzmaxApi::Object::EzsignpageResponse;
use EzmaxApi::Object::EzsignpageResponseCompound;
use EzmaxApi::Object::EzsignsignatureCreateObjectV1Request;
use EzmaxApi::Object::EzsignsignatureCreateObjectV1Response;
use EzmaxApi::Object::EzsignsignatureCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignsignatureCreateObjectV2Request;
use EzmaxApi::Object::EzsignsignatureCreateObjectV2Response;
use EzmaxApi::Object::EzsignsignatureCreateObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignsignatureDeleteObjectV1Response;
use EzmaxApi::Object::EzsignsignatureEditObjectV1Request;
use EzmaxApi::Object::EzsignsignatureEditObjectV1Response;
use EzmaxApi::Object::EzsignsignatureGetEzsignsignatureattachmentV1Response;
use EzmaxApi::Object::EzsignsignatureGetEzsignsignatureattachmentV1ResponseMPayload;
use EzmaxApi::Object::EzsignsignatureGetEzsignsignaturesAutomaticV1Response;
use EzmaxApi::Object::EzsignsignatureGetEzsignsignaturesAutomaticV1ResponseMPayload;
use EzmaxApi::Object::EzsignsignatureGetObjectV2Response;
use EzmaxApi::Object::EzsignsignatureGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignsignatureRequest;
use EzmaxApi::Object::EzsignsignatureRequestCompound;
use EzmaxApi::Object::EzsignsignatureResponse;
use EzmaxApi::Object::EzsignsignatureResponseCompound;
use EzmaxApi::Object::EzsignsignatureSignV1Request;
use EzmaxApi::Object::EzsignsignatureSignV1Response;
use EzmaxApi::Object::EzsignsignatureattachmentResponse;
use EzmaxApi::Object::EzsignsignaturecustomdateRequest;
use EzmaxApi::Object::EzsignsignaturecustomdateRequestCompound;
use EzmaxApi::Object::EzsignsignaturecustomdateResponse;
use EzmaxApi::Object::EzsignsignaturecustomdateResponseCompound;
use EzmaxApi::Object::EzsignsignerRequest;
use EzmaxApi::Object::EzsignsignerRequestCompound;
use EzmaxApi::Object::EzsignsignerRequestCompoundContact;
use EzmaxApi::Object::EzsignsignerResponse;
use EzmaxApi::Object::EzsignsignerResponseCompound;
use EzmaxApi::Object::EzsignsignerResponseCompoundContact;
use EzmaxApi::Object::EzsignsignergroupCreateObjectV1Request;
use EzmaxApi::Object::EzsignsignergroupCreateObjectV1Response;
use EzmaxApi::Object::EzsignsignergroupCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignsignergroupDeleteObjectV1Response;
use EzmaxApi::Object::EzsignsignergroupEditEzsignsignergroupmembershipsV1Request;
use EzmaxApi::Object::EzsignsignergroupEditEzsignsignergroupmembershipsV1Response;
use EzmaxApi::Object::EzsignsignergroupEditEzsignsignergroupmembershipsV1ResponseMPayload;
use EzmaxApi::Object::EzsignsignergroupEditObjectV1Request;
use EzmaxApi::Object::EzsignsignergroupEditObjectV1Response;
use EzmaxApi::Object::EzsignsignergroupGetEzsignsignergroupmembershipsV1Response;
use EzmaxApi::Object::EzsignsignergroupGetEzsignsignergroupmembershipsV1ResponseMPayload;
use EzmaxApi::Object::EzsignsignergroupGetObjectV2Response;
use EzmaxApi::Object::EzsignsignergroupGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignsignergroupRequest;
use EzmaxApi::Object::EzsignsignergroupRequestCompound;
use EzmaxApi::Object::EzsignsignergroupResponse;
use EzmaxApi::Object::EzsignsignergroupResponseCompound;
use EzmaxApi::Object::EzsignsignergroupmembershipCreateObjectV1Request;
use EzmaxApi::Object::EzsignsignergroupmembershipCreateObjectV1Response;
use EzmaxApi::Object::EzsignsignergroupmembershipCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignsignergroupmembershipDeleteObjectV1Response;
use EzmaxApi::Object::EzsignsignergroupmembershipGetObjectV2Response;
use EzmaxApi::Object::EzsignsignergroupmembershipGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignsignergroupmembershipRequest;
use EzmaxApi::Object::EzsignsignergroupmembershipRequestCompound;
use EzmaxApi::Object::EzsignsignergroupmembershipResponse;
use EzmaxApi::Object::EzsignsignergroupmembershipResponseCompound;
use EzmaxApi::Object::EzsignsigningreasonAutocompleteElementResponse;
use EzmaxApi::Object::EzsignsigningreasonCreateObjectV1Request;
use EzmaxApi::Object::EzsignsigningreasonCreateObjectV1Response;
use EzmaxApi::Object::EzsignsigningreasonCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsignsigningreasonEditObjectV1Request;
use EzmaxApi::Object::EzsignsigningreasonEditObjectV1Response;
use EzmaxApi::Object::EzsignsigningreasonGetAutocompleteV2Response;
use EzmaxApi::Object::EzsignsigningreasonGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::EzsignsigningreasonGetListV1Response;
use EzmaxApi::Object::EzsignsigningreasonGetListV1ResponseMPayload;
use EzmaxApi::Object::EzsignsigningreasonGetObjectV2Response;
use EzmaxApi::Object::EzsignsigningreasonGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsignsigningreasonListElement;
use EzmaxApi::Object::EzsignsigningreasonRequest;
use EzmaxApi::Object::EzsignsigningreasonRequestCompound;
use EzmaxApi::Object::EzsignsigningreasonResponse;
use EzmaxApi::Object::EzsignsigningreasonResponseCompound;
use EzmaxApi::Object::EzsigntemplateAutocompleteElementResponse;
use EzmaxApi::Object::EzsigntemplateCopyV1Request;
use EzmaxApi::Object::EzsigntemplateCopyV1Response;
use EzmaxApi::Object::EzsigntemplateCopyV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplateCreateObjectV1Request;
use EzmaxApi::Object::EzsigntemplateCreateObjectV1Response;
use EzmaxApi::Object::EzsigntemplateCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplateCreateObjectV2Request;
use EzmaxApi::Object::EzsigntemplateCreateObjectV2Response;
use EzmaxApi::Object::EzsigntemplateCreateObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplateDeleteObjectV1Response;
use EzmaxApi::Object::EzsigntemplateEditObjectV1Request;
use EzmaxApi::Object::EzsigntemplateEditObjectV1Response;
use EzmaxApi::Object::EzsigntemplateEditObjectV2Request;
use EzmaxApi::Object::EzsigntemplateEditObjectV2Response;
use EzmaxApi::Object::EzsigntemplateGetAutocompleteV2Response;
use EzmaxApi::Object::EzsigntemplateGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplateGetListV1Response;
use EzmaxApi::Object::EzsigntemplateGetListV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplateGetObjectV1Response;
use EzmaxApi::Object::EzsigntemplateGetObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplateGetObjectV2Response;
use EzmaxApi::Object::EzsigntemplateGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplateListElement;
use EzmaxApi::Object::EzsigntemplateRequest;
use EzmaxApi::Object::EzsigntemplateRequestCompound;
use EzmaxApi::Object::EzsigntemplateRequestCompoundV2;
use EzmaxApi::Object::EzsigntemplateRequestV2;
use EzmaxApi::Object::EzsigntemplateResponse;
use EzmaxApi::Object::EzsigntemplateResponseCompound;
use EzmaxApi::Object::EzsigntemplatedocumentCreateObjectV1Request;
use EzmaxApi::Object::EzsigntemplatedocumentCreateObjectV1Response;
use EzmaxApi::Object::EzsigntemplatedocumentCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatedocumentEditEzsigntemplateformfieldgroupsV1Request;
use EzmaxApi::Object::EzsigntemplatedocumentEditEzsigntemplateformfieldgroupsV1Response;
use EzmaxApi::Object::EzsigntemplatedocumentEditEzsigntemplateformfieldgroupsV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatedocumentEditEzsigntemplatesignaturesV1Request;
use EzmaxApi::Object::EzsigntemplatedocumentEditEzsigntemplatesignaturesV1Response;
use EzmaxApi::Object::EzsigntemplatedocumentEditEzsigntemplatesignaturesV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatedocumentEditObjectV1Request;
use EzmaxApi::Object::EzsigntemplatedocumentEditObjectV1Response;
use EzmaxApi::Object::EzsigntemplatedocumentFlattenV1Response;
use EzmaxApi::Object::EzsigntemplatedocumentGetEzsigntemplatedocumentpagesV1Response;
use EzmaxApi::Object::EzsigntemplatedocumentGetEzsigntemplatedocumentpagesV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatedocumentGetEzsigntemplateformfieldgroupsV1Response;
use EzmaxApi::Object::EzsigntemplatedocumentGetEzsigntemplateformfieldgroupsV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatedocumentGetEzsigntemplatesignaturesV1Response;
use EzmaxApi::Object::EzsigntemplatedocumentGetEzsigntemplatesignaturesV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatedocumentGetObjectV2Response;
use EzmaxApi::Object::EzsigntemplatedocumentGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatedocumentGetWordsPositionsV1Request;
use EzmaxApi::Object::EzsigntemplatedocumentGetWordsPositionsV1Response;
use EzmaxApi::Object::EzsigntemplatedocumentPatchObjectV1Request;
use EzmaxApi::Object::EzsigntemplatedocumentPatchObjectV1Response;
use EzmaxApi::Object::EzsigntemplatedocumentRequest;
use EzmaxApi::Object::EzsigntemplatedocumentRequestCompound;
use EzmaxApi::Object::EzsigntemplatedocumentRequestPatch;
use EzmaxApi::Object::EzsigntemplatedocumentResponse;
use EzmaxApi::Object::EzsigntemplatedocumentResponseCompound;
use EzmaxApi::Object::EzsigntemplatedocumentpageResponse;
use EzmaxApi::Object::EzsigntemplatedocumentpageResponseCompound;
use EzmaxApi::Object::EzsigntemplateelementdependencyRequest;
use EzmaxApi::Object::EzsigntemplateelementdependencyRequestCompound;
use EzmaxApi::Object::EzsigntemplateelementdependencyResponse;
use EzmaxApi::Object::EzsigntemplateelementdependencyResponseCompound;
use EzmaxApi::Object::EzsigntemplateformfieldRequest;
use EzmaxApi::Object::EzsigntemplateformfieldRequestCompound;
use EzmaxApi::Object::EzsigntemplateformfieldResponse;
use EzmaxApi::Object::EzsigntemplateformfieldResponseCompound;
use EzmaxApi::Object::EzsigntemplateformfieldgroupCreateObjectV1Request;
use EzmaxApi::Object::EzsigntemplateformfieldgroupCreateObjectV1Response;
use EzmaxApi::Object::EzsigntemplateformfieldgroupCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplateformfieldgroupDeleteObjectV1Response;
use EzmaxApi::Object::EzsigntemplateformfieldgroupEditObjectV1Request;
use EzmaxApi::Object::EzsigntemplateformfieldgroupEditObjectV1Response;
use EzmaxApi::Object::EzsigntemplateformfieldgroupGetObjectV2Response;
use EzmaxApi::Object::EzsigntemplateformfieldgroupGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplateformfieldgroupRequest;
use EzmaxApi::Object::EzsigntemplateformfieldgroupRequestCompound;
use EzmaxApi::Object::EzsigntemplateformfieldgroupResponse;
use EzmaxApi::Object::EzsigntemplateformfieldgroupResponseCompound;
use EzmaxApi::Object::EzsigntemplateformfieldgroupsignerRequest;
use EzmaxApi::Object::EzsigntemplateformfieldgroupsignerRequestCompound;
use EzmaxApi::Object::EzsigntemplateformfieldgroupsignerResponse;
use EzmaxApi::Object::EzsigntemplateformfieldgroupsignerResponseCompound;
use EzmaxApi::Object::EzsigntemplateglobalAutocompleteElementResponse;
use EzmaxApi::Object::EzsigntemplateglobalGetAutocompleteV2Response;
use EzmaxApi::Object::EzsigntemplateglobalGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplateglobalGetObjectV2Response;
use EzmaxApi::Object::EzsigntemplateglobalGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplateglobalResponse;
use EzmaxApi::Object::EzsigntemplateglobalResponseCompound;
use EzmaxApi::Object::EzsigntemplateglobaldocumentResponse;
use EzmaxApi::Object::EzsigntemplateglobalsignerResponse;
use EzmaxApi::Object::EzsigntemplateglobalsignerResponseCompound;
use EzmaxApi::Object::EzsigntemplatepackageAutocompleteElementResponse;
use EzmaxApi::Object::EzsigntemplatepackageCreateObjectV1Request;
use EzmaxApi::Object::EzsigntemplatepackageCreateObjectV1Response;
use EzmaxApi::Object::EzsigntemplatepackageCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackageDeleteObjectV1Response;
use EzmaxApi::Object::EzsigntemplatepackageEditEzsigntemplatepackagesignersV1Request;
use EzmaxApi::Object::EzsigntemplatepackageEditEzsigntemplatepackagesignersV1Response;
use EzmaxApi::Object::EzsigntemplatepackageEditEzsigntemplatepackagesignersV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackageEditObjectV1Request;
use EzmaxApi::Object::EzsigntemplatepackageEditObjectV1Response;
use EzmaxApi::Object::EzsigntemplatepackageGetAutocompleteV2Response;
use EzmaxApi::Object::EzsigntemplatepackageGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackageGetListV1Response;
use EzmaxApi::Object::EzsigntemplatepackageGetListV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackageGetObjectV2Response;
use EzmaxApi::Object::EzsigntemplatepackageGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackageListElement;
use EzmaxApi::Object::EzsigntemplatepackageRequest;
use EzmaxApi::Object::EzsigntemplatepackageRequestCompound;
use EzmaxApi::Object::EzsigntemplatepackageResponse;
use EzmaxApi::Object::EzsigntemplatepackageResponseCompound;
use EzmaxApi::Object::EzsigntemplatepackagemembershipCreateObjectV1Request;
use EzmaxApi::Object::EzsigntemplatepackagemembershipCreateObjectV1Response;
use EzmaxApi::Object::EzsigntemplatepackagemembershipCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackagemembershipDeleteObjectV1Response;
use EzmaxApi::Object::EzsigntemplatepackagemembershipGetObjectV2Response;
use EzmaxApi::Object::EzsigntemplatepackagemembershipGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackagemembershipRequest;
use EzmaxApi::Object::EzsigntemplatepackagemembershipRequestCompound;
use EzmaxApi::Object::EzsigntemplatepackagemembershipResponse;
use EzmaxApi::Object::EzsigntemplatepackagemembershipResponseCompound;
use EzmaxApi::Object::EzsigntemplatepackagesignerCreateObjectV1Request;
use EzmaxApi::Object::EzsigntemplatepackagesignerCreateObjectV1Response;
use EzmaxApi::Object::EzsigntemplatepackagesignerCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackagesignerDeleteObjectV1Response;
use EzmaxApi::Object::EzsigntemplatepackagesignerDeleteObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackagesignerEditObjectV1Request;
use EzmaxApi::Object::EzsigntemplatepackagesignerEditObjectV1Response;
use EzmaxApi::Object::EzsigntemplatepackagesignerGetObjectV2Response;
use EzmaxApi::Object::EzsigntemplatepackagesignerGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackagesignerRequest;
use EzmaxApi::Object::EzsigntemplatepackagesignerRequestCompound;
use EzmaxApi::Object::EzsigntemplatepackagesignerResponse;
use EzmaxApi::Object::EzsigntemplatepackagesignerResponseCompound;
use EzmaxApi::Object::EzsigntemplatepackagesignermembershipCreateObjectV1Request;
use EzmaxApi::Object::EzsigntemplatepackagesignermembershipCreateObjectV1Response;
use EzmaxApi::Object::EzsigntemplatepackagesignermembershipCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackagesignermembershipDeleteObjectV1Response;
use EzmaxApi::Object::EzsigntemplatepackagesignermembershipDeleteObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackagesignermembershipGetObjectV2Response;
use EzmaxApi::Object::EzsigntemplatepackagesignermembershipGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatepackagesignermembershipRequest;
use EzmaxApi::Object::EzsigntemplatepackagesignermembershipRequestCompound;
use EzmaxApi::Object::EzsigntemplatepackagesignermembershipResponse;
use EzmaxApi::Object::EzsigntemplatepackagesignermembershipResponseCompound;
use EzmaxApi::Object::EzsigntemplatesignatureCreateObjectV1Request;
use EzmaxApi::Object::EzsigntemplatesignatureCreateObjectV1Response;
use EzmaxApi::Object::EzsigntemplatesignatureCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatesignatureDeleteObjectV1Response;
use EzmaxApi::Object::EzsigntemplatesignatureEditObjectV1Request;
use EzmaxApi::Object::EzsigntemplatesignatureEditObjectV1Response;
use EzmaxApi::Object::EzsigntemplatesignatureGetObjectV2Response;
use EzmaxApi::Object::EzsigntemplatesignatureGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatesignatureRequest;
use EzmaxApi::Object::EzsigntemplatesignatureRequestCompound;
use EzmaxApi::Object::EzsigntemplatesignatureResponse;
use EzmaxApi::Object::EzsigntemplatesignatureResponseCompound;
use EzmaxApi::Object::EzsigntemplatesignaturecustomdateRequest;
use EzmaxApi::Object::EzsigntemplatesignaturecustomdateRequestCompound;
use EzmaxApi::Object::EzsigntemplatesignaturecustomdateResponse;
use EzmaxApi::Object::EzsigntemplatesignaturecustomdateResponseCompound;
use EzmaxApi::Object::EzsigntemplatesignerCreateObjectV1Request;
use EzmaxApi::Object::EzsigntemplatesignerCreateObjectV1Response;
use EzmaxApi::Object::EzsigntemplatesignerCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatesignerDeleteObjectV1Response;
use EzmaxApi::Object::EzsigntemplatesignerEditObjectV1Request;
use EzmaxApi::Object::EzsigntemplatesignerEditObjectV1Response;
use EzmaxApi::Object::EzsigntemplatesignerGetObjectV2Response;
use EzmaxApi::Object::EzsigntemplatesignerGetObjectV2ResponseMPayload;
use EzmaxApi::Object::EzsigntemplatesignerRequest;
use EzmaxApi::Object::EzsigntemplatesignerRequestCompound;
use EzmaxApi::Object::EzsigntemplatesignerResponse;
use EzmaxApi::Object::EzsigntemplatesignerResponseCompound;
use EzmaxApi::Object::EzsigntsarequirementAutocompleteElementResponse;
use EzmaxApi::Object::EzsigntsarequirementGetAutocompleteV2Response;
use EzmaxApi::Object::EzsigntsarequirementGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::FieldEActivesessionOrigin;
use EzmaxApi::Object::FieldEActivesessionUsertype;
use EzmaxApi::Object::FieldEActivesessionWeekdaystart;
use EzmaxApi::Object::FieldEAttachmentDocumenttype;
use EzmaxApi::Object::FieldEAttachmentPrivacy;
use EzmaxApi::Object::FieldEAttachmentType;
use EzmaxApi::Object::FieldEAttachmentVerified;
use EzmaxApi::Object::FieldEAttachmentlogType;
use EzmaxApi::Object::FieldEBrandingLogo;
use EzmaxApi::Object::FieldEBrandingLogointerface;
use EzmaxApi::Object::FieldECommunicationImportance;
use EzmaxApi::Object::FieldECommunicationType;
use EzmaxApi::Object::FieldECommunicationexternalrecipientType;
use EzmaxApi::Object::FieldECommunicationrecipientType;
use EzmaxApi::Object::FieldECreditcardtypeCodename;
use EzmaxApi::Object::FieldEDiscussionmessageStatus;
use EzmaxApi::Object::FieldEErrorCode;
use EzmaxApi::Object::FieldEEzmaxinvoicingPaymenttype;
use EzmaxApi::Object::FieldEEzmaxinvoicingagentVariationezmax;
use EzmaxApi::Object::FieldEEzmaxinvoicingagentVariationezsign;
use EzmaxApi::Object::FieldEEzmaxinvoicingcontractPaymenttype;
use EzmaxApi::Object::FieldEEzmaxinvoicinguserVariationezsign;
use EzmaxApi::Object::FieldEEzsignannotationType;
use EzmaxApi::Object::FieldEEzsigndocumentStep;
use EzmaxApi::Object::FieldEEzsigndocumentlogType;
use EzmaxApi::Object::FieldEEzsignelementdependencyOperator;
use EzmaxApi::Object::FieldEEzsignelementdependencyValidation;
use EzmaxApi::Object::FieldEEzsignfolderCompletion;
use EzmaxApi::Object::FieldEEzsignfolderSendreminderfrequency;
use EzmaxApi::Object::FieldEEzsignfolderStep;
use EzmaxApi::Object::FieldEEzsignfoldertypeCompletion;
use EzmaxApi::Object::FieldEEzsignfoldertypeDisposal;
use EzmaxApi::Object::FieldEEzsignfoldertypePrivacylevel;
use EzmaxApi::Object::FieldEEzsignfoldertypeSendreminderfrequency;
use EzmaxApi::Object::FieldEEzsignformfieldDependencyrequirement;
use EzmaxApi::Object::FieldEEzsignformfieldgroupSignerrequirement;
use EzmaxApi::Object::FieldEEzsignformfieldgroupTooltipposition;
use EzmaxApi::Object::FieldEEzsignformfieldgroupType;
use EzmaxApi::Object::FieldEEzsignsignatureAttachmentnamesource;
use EzmaxApi::Object::FieldEEzsignsignatureDependencyrequirement;
use EzmaxApi::Object::FieldEEzsignsignatureFont;
use EzmaxApi::Object::FieldEEzsignsignatureTooltipposition;
use EzmaxApi::Object::FieldEEzsignsignatureType;
use EzmaxApi::Object::FieldEEzsigntemplateType;
use EzmaxApi::Object::FieldEEzsigntemplateelementdependencyOperator;
use EzmaxApi::Object::FieldEEzsigntemplateelementdependencyValidation;
use EzmaxApi::Object::FieldEEzsigntemplateformfieldDependencyrequirement;
use EzmaxApi::Object::FieldEEzsigntemplateformfieldPositioning;
use EzmaxApi::Object::FieldEEzsigntemplateformfieldPositioningoccurence;
use EzmaxApi::Object::FieldEEzsigntemplateformfieldgroupSignerrequirement;
use EzmaxApi::Object::FieldEEzsigntemplateformfieldgroupTooltipposition;
use EzmaxApi::Object::FieldEEzsigntemplateformfieldgroupType;
use EzmaxApi::Object::FieldEEzsigntemplateglobalModule;
use EzmaxApi::Object::FieldEEzsigntemplateglobalSupplier;
use EzmaxApi::Object::FieldEEzsigntemplatesignatureAttachmentnamesource;
use EzmaxApi::Object::FieldEEzsigntemplatesignatureDependencyrequirement;
use EzmaxApi::Object::FieldEEzsigntemplatesignatureFont;
use EzmaxApi::Object::FieldEEzsigntemplatesignaturePositioning;
use EzmaxApi::Object::FieldEEzsigntemplatesignaturePositioningoccurence;
use EzmaxApi::Object::FieldEEzsigntemplatesignatureTooltipposition;
use EzmaxApi::Object::FieldEEzsigntemplatesignatureType;
use EzmaxApi::Object::FieldENotificationpreferenceStatus;
use EzmaxApi::Object::FieldEPaymenttermType;
use EzmaxApi::Object::FieldEPhoneType;
use EzmaxApi::Object::FieldESessionhistoryEndby;
use EzmaxApi::Object::FieldESystemconfigurationEzsign;
use EzmaxApi::Object::FieldESystemconfigurationEzsignofficeplan;
use EzmaxApi::Object::FieldESystemconfigurationLanguage1;
use EzmaxApi::Object::FieldESystemconfigurationLanguage2;
use EzmaxApi::Object::FieldESystemconfigurationNewexternaluseraction;
use EzmaxApi::Object::FieldEUserEzsignaccess;
use EzmaxApi::Object::FieldEUserEzsignprepaid;
use EzmaxApi::Object::FieldEUserEzsignsendreminderfrequency;
use EzmaxApi::Object::FieldEUserLogintype;
use EzmaxApi::Object::FieldEUserOrigin;
use EzmaxApi::Object::FieldEUserType;
use EzmaxApi::Object::FieldEVariableexpenseTaxable;
use EzmaxApi::Object::FieldEVersionhistoryType;
use EzmaxApi::Object::FieldEVersionhistoryUsertype;
use EzmaxApi::Object::FieldEWebhookEzsignevent;
use EzmaxApi::Object::FieldEWebhookManagementevent;
use EzmaxApi::Object::FieldEWebhookModule;
use EzmaxApi::Object::FieldPksEzmaxclientOs;
use EzmaxApi::Object::FontAutocompleteElementResponse;
use EzmaxApi::Object::FontGetAutocompleteV2Response;
use EzmaxApi::Object::FontGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::FranchisebrokerAutocompleteElementResponse;
use EzmaxApi::Object::FranchisebrokerGetAutocompleteV2Response;
use EzmaxApi::Object::FranchisebrokerGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::FranchiseofficeAutocompleteElementResponse;
use EzmaxApi::Object::FranchiseofficeGetAutocompleteV2Response;
use EzmaxApi::Object::FranchiseofficeGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::FranchisereferalincomeCreateObjectV2Request;
use EzmaxApi::Object::FranchisereferalincomeCreateObjectV2Response;
use EzmaxApi::Object::FranchisereferalincomeCreateObjectV2ResponseMPayload;
use EzmaxApi::Object::FranchisereferalincomeRequest;
use EzmaxApi::Object::FranchisereferalincomeRequestCompound;
use EzmaxApi::Object::GlobalCustomerGetEndpointV1Response;
use EzmaxApi::Object::GlobalEzmaxclientVersionV1Response;
use EzmaxApi::Object::GlobalEzmaxcustomerGetConfigurationV1Response;
use EzmaxApi::Object::HeaderAcceptLanguage;
use EzmaxApi::Object::InscriptionGetAttachmentsV1Response;
use EzmaxApi::Object::InscriptionGetAttachmentsV1ResponseMPayload;
use EzmaxApi::Object::InscriptionGetCommunicationListV1Response;
use EzmaxApi::Object::InscriptionGetCommunicationListV1ResponseMPayload;
use EzmaxApi::Object::InscriptionGetCommunicationsendersV1Response;
use EzmaxApi::Object::InscriptionGetCommunicationsendersV1ResponseMPayload;
use EzmaxApi::Object::InscriptionnotauthenticatedGetCommunicationListV1Response;
use EzmaxApi::Object::InscriptionnotauthenticatedGetCommunicationListV1ResponseMPayload;
use EzmaxApi::Object::InscriptiontempGetCommunicationListV1Response;
use EzmaxApi::Object::InscriptiontempGetCommunicationListV1ResponseMPayload;
use EzmaxApi::Object::InvoiceGetAttachmentsV1Response;
use EzmaxApi::Object::InvoiceGetAttachmentsV1ResponseMPayload;
use EzmaxApi::Object::InvoiceGetCommunicationListV1Response;
use EzmaxApi::Object::InvoiceGetCommunicationListV1ResponseMPayload;
use EzmaxApi::Object::LanguageAutocompleteElementResponse;
use EzmaxApi::Object::LanguageGetAutocompleteV2Response;
use EzmaxApi::Object::LanguageGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::ModuleAutocompleteElementResponse;
use EzmaxApi::Object::ModuleGetAutocompleteV2Response;
use EzmaxApi::Object::ModuleGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::ModuleResponse;
use EzmaxApi::Object::ModuleResponseCompound;
use EzmaxApi::Object::ModulegroupGetAllV1Response;
use EzmaxApi::Object::ModulegroupGetAllV1ResponseMPayload;
use EzmaxApi::Object::ModulegroupResponse;
use EzmaxApi::Object::ModulegroupResponseCompound;
use EzmaxApi::Object::ModulesectionResponse;
use EzmaxApi::Object::ModulesectionResponseCompound;
use EzmaxApi::Object::MultilingualApikeyDescription;
use EzmaxApi::Object::MultilingualBillingentityinternalDescription;
use EzmaxApi::Object::MultilingualBrandingDescription;
use EzmaxApi::Object::MultilingualEzmaxinvoicingsummaryinternalDescription;
use EzmaxApi::Object::MultilingualEzsignfoldertypeName;
use EzmaxApi::Object::MultilingualEzsignsignergroupDescription;
use EzmaxApi::Object::MultilingualEzsignsigningreasonDescription;
use EzmaxApi::Object::MultilingualNotificationsubsectionName;
use EzmaxApi::Object::MultilingualNotificationtestName;
use EzmaxApi::Object::MultilingualPaymenttermDescription;
use EzmaxApi::Object::MultilingualSubnetDescription;
use EzmaxApi::Object::MultilingualUsergroupName;
use EzmaxApi::Object::MultilingualUserlogintypeDescription;
use EzmaxApi::Object::MultilingualVariableexpenseDescription;
use EzmaxApi::Object::MultilingualVersionhistoryDetail;
use EzmaxApi::Object::NotificationsectionGetNotificationtestsV1Response;
use EzmaxApi::Object::NotificationsectionGetNotificationtestsV1ResponseMPayload;
use EzmaxApi::Object::NotificationsubsectionResponse;
use EzmaxApi::Object::NotificationtestGetElementsV1Response;
use EzmaxApi::Object::NotificationtestGetElementsV1ResponseMPayload;
use EzmaxApi::Object::NotificationtestResponse;
use EzmaxApi::Object::OtherincomeGetCommunicationListV1Response;
use EzmaxApi::Object::OtherincomeGetCommunicationListV1ResponseMPayload;
use EzmaxApi::Object::PaymenttermAutocompleteElementResponse;
use EzmaxApi::Object::PaymenttermCreateObjectV1Request;
use EzmaxApi::Object::PaymenttermCreateObjectV1Response;
use EzmaxApi::Object::PaymenttermCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::PaymenttermEditObjectV1Request;
use EzmaxApi::Object::PaymenttermEditObjectV1Response;
use EzmaxApi::Object::PaymenttermGetAutocompleteV2Response;
use EzmaxApi::Object::PaymenttermGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::PaymenttermGetListV1Response;
use EzmaxApi::Object::PaymenttermGetListV1ResponseMPayload;
use EzmaxApi::Object::PaymenttermGetObjectV2Response;
use EzmaxApi::Object::PaymenttermGetObjectV2ResponseMPayload;
use EzmaxApi::Object::PaymenttermListElement;
use EzmaxApi::Object::PaymenttermRequest;
use EzmaxApi::Object::PaymenttermRequestCompound;
use EzmaxApi::Object::PaymenttermResponse;
use EzmaxApi::Object::PaymenttermResponseCompound;
use EzmaxApi::Object::PeriodAutocompleteElementResponse;
use EzmaxApi::Object::PeriodGetAutocompleteV2Response;
use EzmaxApi::Object::PeriodGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::PermissionCreateObjectV1Request;
use EzmaxApi::Object::PermissionCreateObjectV1Response;
use EzmaxApi::Object::PermissionCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::PermissionDeleteObjectV1Response;
use EzmaxApi::Object::PermissionEditObjectV1Request;
use EzmaxApi::Object::PermissionEditObjectV1Response;
use EzmaxApi::Object::PermissionGetObjectV2Response;
use EzmaxApi::Object::PermissionGetObjectV2ResponseMPayload;
use EzmaxApi::Object::PermissionRequest;
use EzmaxApi::Object::PermissionRequestCompound;
use EzmaxApi::Object::PermissionResponse;
use EzmaxApi::Object::PermissionResponseCompound;
use EzmaxApi::Object::PhoneRequest;
use EzmaxApi::Object::PhoneRequestCompound;
use EzmaxApi::Object::PhoneRequestCompoundV2;
use EzmaxApi::Object::PhoneRequestV2;
use EzmaxApi::Object::PhoneResponse;
use EzmaxApi::Object::PhoneResponseCompound;
use EzmaxApi::Object::PhonetypeAutocompleteElementResponse;
use EzmaxApi::Object::PhonetypeGetAutocompleteV2Response;
use EzmaxApi::Object::PhonetypeGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::ProvinceAutocompleteElementResponse;
use EzmaxApi::Object::ProvinceGetAutocompleteV2Response;
use EzmaxApi::Object::ProvinceGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::RejectedoffertopurchaseGetCommunicationListV1Response;
use EzmaxApi::Object::RejectedoffertopurchaseGetCommunicationListV1ResponseMPayload;
use EzmaxApi::Object::ScimAuthenticationScheme;
use EzmaxApi::Object::ScimEmail;
use EzmaxApi::Object::ScimGroup;
use EzmaxApi::Object::ScimGroupMember;
use EzmaxApi::Object::ScimServiceProviderConfig;
use EzmaxApi::Object::ScimServiceProviderConfigBulk;
use EzmaxApi::Object::ScimServiceProviderConfigChangePassword;
use EzmaxApi::Object::ScimServiceProviderConfigEtag;
use EzmaxApi::Object::ScimServiceProviderConfigFilter;
use EzmaxApi::Object::ScimServiceProviderConfigPatch;
use EzmaxApi::Object::ScimServiceProviderConfigSort;
use EzmaxApi::Object::ScimUser;
use EzmaxApi::Object::ScimUserList;
use EzmaxApi::Object::SecretquestionAutocompleteElementResponse;
use EzmaxApi::Object::SecretquestionGetAutocompleteV2Response;
use EzmaxApi::Object::SecretquestionGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::SessionhistoryGetListV1Response;
use EzmaxApi::Object::SessionhistoryGetListV1ResponseMPayload;
use EzmaxApi::Object::SessionhistoryListElement;
use EzmaxApi::Object::SignatureCreateObjectV1Request;
use EzmaxApi::Object::SignatureCreateObjectV1Response;
use EzmaxApi::Object::SignatureCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::SignatureDeleteObjectV1Response;
use EzmaxApi::Object::SignatureEditObjectV1Request;
use EzmaxApi::Object::SignatureEditObjectV1Response;
use EzmaxApi::Object::SignatureGetObjectV2Response;
use EzmaxApi::Object::SignatureGetObjectV2ResponseMPayload;
use EzmaxApi::Object::SignatureRequest;
use EzmaxApi::Object::SignatureRequestCompound;
use EzmaxApi::Object::SignatureResponse;
use EzmaxApi::Object::SignatureResponseCompound;
use EzmaxApi::Object::SubnetCreateObjectV1Request;
use EzmaxApi::Object::SubnetCreateObjectV1Response;
use EzmaxApi::Object::SubnetCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::SubnetDeleteObjectV1Response;
use EzmaxApi::Object::SubnetEditObjectV1Request;
use EzmaxApi::Object::SubnetEditObjectV1Response;
use EzmaxApi::Object::SubnetGetObjectV2Response;
use EzmaxApi::Object::SubnetGetObjectV2ResponseMPayload;
use EzmaxApi::Object::SubnetRequest;
use EzmaxApi::Object::SubnetRequestCompound;
use EzmaxApi::Object::SubnetResponse;
use EzmaxApi::Object::SubnetResponseCompound;
use EzmaxApi::Object::SystemconfigurationEditObjectV1Request;
use EzmaxApi::Object::SystemconfigurationEditObjectV1Response;
use EzmaxApi::Object::SystemconfigurationGetObjectV2Response;
use EzmaxApi::Object::SystemconfigurationGetObjectV2ResponseMPayload;
use EzmaxApi::Object::SystemconfigurationRequest;
use EzmaxApi::Object::SystemconfigurationRequestCompound;
use EzmaxApi::Object::SystemconfigurationResponse;
use EzmaxApi::Object::SystemconfigurationResponseCompound;
use EzmaxApi::Object::TaxassignmentAutocompleteElementResponse;
use EzmaxApi::Object::TaxassignmentGetAutocompleteV2Response;
use EzmaxApi::Object::TaxassignmentGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::TextstylestaticResponse;
use EzmaxApi::Object::TextstylestaticResponseCompound;
use EzmaxApi::Object::TimezoneAutocompleteElementResponse;
use EzmaxApi::Object::TimezoneGetAutocompleteV2Response;
use EzmaxApi::Object::TimezoneGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::UserAutocompleteElementResponse;
use EzmaxApi::Object::UserCreateEzsignuserV1Request;
use EzmaxApi::Object::UserCreateEzsignuserV1Response;
use EzmaxApi::Object::UserCreateEzsignuserV1ResponseMPayload;
use EzmaxApi::Object::UserCreateObjectV1Request;
use EzmaxApi::Object::UserCreateObjectV1Response;
use EzmaxApi::Object::UserCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::UserCreateObjectV2Request;
use EzmaxApi::Object::UserCreateObjectV2Response;
use EzmaxApi::Object::UserCreateObjectV2ResponseMPayload;
use EzmaxApi::Object::UserEditObjectV1Request;
use EzmaxApi::Object::UserEditObjectV1Response;
use EzmaxApi::Object::UserEditPermissionsV1Request;
use EzmaxApi::Object::UserEditPermissionsV1Response;
use EzmaxApi::Object::UserEditPermissionsV1ResponseMPayload;
use EzmaxApi::Object::UserGetApikeysV1Response;
use EzmaxApi::Object::UserGetApikeysV1ResponseMPayload;
use EzmaxApi::Object::UserGetAutocompleteV2Response;
use EzmaxApi::Object::UserGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::UserGetEffectivePermissionsV1Response;
use EzmaxApi::Object::UserGetEffectivePermissionsV1ResponseMPayload;
use EzmaxApi::Object::UserGetListV1Response;
use EzmaxApi::Object::UserGetListV1ResponseMPayload;
use EzmaxApi::Object::UserGetObjectV2Response;
use EzmaxApi::Object::UserGetObjectV2ResponseMPayload;
use EzmaxApi::Object::UserGetPermissionsV1Response;
use EzmaxApi::Object::UserGetPermissionsV1ResponseMPayload;
use EzmaxApi::Object::UserGetSubnetsV1Response;
use EzmaxApi::Object::UserGetSubnetsV1ResponseMPayload;
use EzmaxApi::Object::UserGetUsergroupexternalsV1Response;
use EzmaxApi::Object::UserGetUsergroupexternalsV1ResponseMPayload;
use EzmaxApi::Object::UserGetUsergroupsV1Response;
use EzmaxApi::Object::UserGetUsergroupsV1ResponseMPayload;
use EzmaxApi::Object::UserListElement;
use EzmaxApi::Object::UserRequest;
use EzmaxApi::Object::UserRequestCompound;
use EzmaxApi::Object::UserRequestCompoundV2;
use EzmaxApi::Object::UserRequestV2;
use EzmaxApi::Object::UserResponse;
use EzmaxApi::Object::UserResponseCompound;
use EzmaxApi::Object::UserSendPasswordResetV1Response;
use EzmaxApi::Object::UsergroupAutocompleteElementResponse;
use EzmaxApi::Object::UsergroupCreateObjectV1Request;
use EzmaxApi::Object::UsergroupCreateObjectV1Response;
use EzmaxApi::Object::UsergroupCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::UsergroupEditObjectV1Request;
use EzmaxApi::Object::UsergroupEditObjectV1Response;
use EzmaxApi::Object::UsergroupEditPermissionsV1Request;
use EzmaxApi::Object::UsergroupEditPermissionsV1Response;
use EzmaxApi::Object::UsergroupEditPermissionsV1ResponseMPayload;
use EzmaxApi::Object::UsergroupEditUsergroupdelegationsV1Request;
use EzmaxApi::Object::UsergroupEditUsergroupdelegationsV1Response;
use EzmaxApi::Object::UsergroupEditUsergroupdelegationsV1ResponseMPayload;
use EzmaxApi::Object::UsergroupEditUsergroupmembershipsV1Request;
use EzmaxApi::Object::UsergroupEditUsergroupmembershipsV1Response;
use EzmaxApi::Object::UsergroupEditUsergroupmembershipsV1ResponseMPayload;
use EzmaxApi::Object::UsergroupGetAutocompleteV2Response;
use EzmaxApi::Object::UsergroupGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::UsergroupGetListV1Response;
use EzmaxApi::Object::UsergroupGetListV1ResponseMPayload;
use EzmaxApi::Object::UsergroupGetObjectV2Response;
use EzmaxApi::Object::UsergroupGetObjectV2ResponseMPayload;
use EzmaxApi::Object::UsergroupGetPermissionsV1Response;
use EzmaxApi::Object::UsergroupGetPermissionsV1ResponseMPayload;
use EzmaxApi::Object::UsergroupGetUsergroupdelegationsV1Response;
use EzmaxApi::Object::UsergroupGetUsergroupdelegationsV1ResponseMPayload;
use EzmaxApi::Object::UsergroupGetUsergroupmembershipsV1Response;
use EzmaxApi::Object::UsergroupGetUsergroupmembershipsV1ResponseMPayload;
use EzmaxApi::Object::UsergroupListElement;
use EzmaxApi::Object::UsergroupRequest;
use EzmaxApi::Object::UsergroupRequestCompound;
use EzmaxApi::Object::UsergroupResponse;
use EzmaxApi::Object::UsergroupResponseCompound;
use EzmaxApi::Object::UsergroupdelegationCreateObjectV1Request;
use EzmaxApi::Object::UsergroupdelegationCreateObjectV1Response;
use EzmaxApi::Object::UsergroupdelegationCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::UsergroupdelegationDeleteObjectV1Response;
use EzmaxApi::Object::UsergroupdelegationEditObjectV1Request;
use EzmaxApi::Object::UsergroupdelegationEditObjectV1Response;
use EzmaxApi::Object::UsergroupdelegationGetObjectV2Response;
use EzmaxApi::Object::UsergroupdelegationGetObjectV2ResponseMPayload;
use EzmaxApi::Object::UsergroupdelegationRequest;
use EzmaxApi::Object::UsergroupdelegationRequestCompound;
use EzmaxApi::Object::UsergroupdelegationResponse;
use EzmaxApi::Object::UsergroupdelegationResponseCompound;
use EzmaxApi::Object::UsergroupexternalAutocompleteElementResponse;
use EzmaxApi::Object::UsergroupexternalCreateObjectV1Request;
use EzmaxApi::Object::UsergroupexternalCreateObjectV1Response;
use EzmaxApi::Object::UsergroupexternalCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::UsergroupexternalDeleteObjectV1Response;
use EzmaxApi::Object::UsergroupexternalEditObjectV1Request;
use EzmaxApi::Object::UsergroupexternalEditObjectV1Response;
use EzmaxApi::Object::UsergroupexternalGetAutocompleteV2Response;
use EzmaxApi::Object::UsergroupexternalGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::UsergroupexternalGetListV1Response;
use EzmaxApi::Object::UsergroupexternalGetListV1ResponseMPayload;
use EzmaxApi::Object::UsergroupexternalGetObjectV2Response;
use EzmaxApi::Object::UsergroupexternalGetObjectV2ResponseMPayload;
use EzmaxApi::Object::UsergroupexternalGetUsergroupexternalmembershipsV1Response;
use EzmaxApi::Object::UsergroupexternalGetUsergroupexternalmembershipsV1ResponseMPayload;
use EzmaxApi::Object::UsergroupexternalGetUsergroupsV1Response;
use EzmaxApi::Object::UsergroupexternalGetUsergroupsV1ResponseMPayload;
use EzmaxApi::Object::UsergroupexternalListElement;
use EzmaxApi::Object::UsergroupexternalRequest;
use EzmaxApi::Object::UsergroupexternalRequestCompound;
use EzmaxApi::Object::UsergroupexternalResponse;
use EzmaxApi::Object::UsergroupexternalResponseCompound;
use EzmaxApi::Object::UsergroupexternalmembershipResponse;
use EzmaxApi::Object::UsergroupexternalmembershipResponseCompound;
use EzmaxApi::Object::UsergroupmembershipCreateObjectV1Request;
use EzmaxApi::Object::UsergroupmembershipCreateObjectV1Response;
use EzmaxApi::Object::UsergroupmembershipCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::UsergroupmembershipDeleteObjectV1Response;
use EzmaxApi::Object::UsergroupmembershipEditObjectV1Request;
use EzmaxApi::Object::UsergroupmembershipEditObjectV1Response;
use EzmaxApi::Object::UsergroupmembershipGetObjectV2Response;
use EzmaxApi::Object::UsergroupmembershipGetObjectV2ResponseMPayload;
use EzmaxApi::Object::UsergroupmembershipRequest;
use EzmaxApi::Object::UsergroupmembershipRequestCompound;
use EzmaxApi::Object::UsergroupmembershipResponse;
use EzmaxApi::Object::UsergroupmembershipResponseCompound;
use EzmaxApi::Object::UserlogintypeAutocompleteElementResponse;
use EzmaxApi::Object::UserlogintypeGetAutocompleteV2Response;
use EzmaxApi::Object::UserlogintypeGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::UserlogintypeResponse;
use EzmaxApi::Object::UserstagedCreateUserV1Response;
use EzmaxApi::Object::UserstagedCreateUserV1ResponseMPayload;
use EzmaxApi::Object::UserstagedDeleteObjectV1Response;
use EzmaxApi::Object::UserstagedGetListV1Response;
use EzmaxApi::Object::UserstagedGetListV1ResponseMPayload;
use EzmaxApi::Object::UserstagedGetObjectV2Response;
use EzmaxApi::Object::UserstagedGetObjectV2ResponseMPayload;
use EzmaxApi::Object::UserstagedListElement;
use EzmaxApi::Object::UserstagedMapV1Request;
use EzmaxApi::Object::UserstagedMapV1Response;
use EzmaxApi::Object::UserstagedResponse;
use EzmaxApi::Object::UserstagedResponseCompound;
use EzmaxApi::Object::VariableexpenseAutocompleteElementResponse;
use EzmaxApi::Object::VariableexpenseCreateObjectV1Request;
use EzmaxApi::Object::VariableexpenseCreateObjectV1Response;
use EzmaxApi::Object::VariableexpenseCreateObjectV1ResponseMPayload;
use EzmaxApi::Object::VariableexpenseEditObjectV1Request;
use EzmaxApi::Object::VariableexpenseEditObjectV1Response;
use EzmaxApi::Object::VariableexpenseGetAutocompleteV2Response;
use EzmaxApi::Object::VariableexpenseGetAutocompleteV2ResponseMPayload;
use EzmaxApi::Object::VariableexpenseGetListV1Response;
use EzmaxApi::Object::VariableexpenseGetListV1ResponseMPayload;
use EzmaxApi::Object::VariableexpenseGetObjectV2Response;
use EzmaxApi::Object::VariableexpenseGetObjectV2ResponseMPayload;
use EzmaxApi::Object::VariableexpenseListElement;
use EzmaxApi::Object::VariableexpenseRequest;
use EzmaxApi::Object::VariableexpenseRequestCompound;
use EzmaxApi::Object::VariableexpenseResponse;
use EzmaxApi::Object::VariableexpenseResponseCompound;
use EzmaxApi::Object::VersionhistoryGetObjectV2Response;
use EzmaxApi::Object::VersionhistoryGetObjectV2ResponseMPayload;
use EzmaxApi::Object::VersionhistoryResponse;
use EzmaxApi::Object::VersionhistoryResponseCompound;
use EzmaxApi::Object::WebhookCreateObjectV2Request;
use EzmaxApi::Object::WebhookCreateObjectV2Response;
use EzmaxApi::Object::WebhookCreateObjectV2ResponseMPayload;
use EzmaxApi::Object::WebhookDeleteObjectV1Response;
use EzmaxApi::Object::WebhookEditObjectV1Request;
use EzmaxApi::Object::WebhookEditObjectV1Response;
use EzmaxApi::Object::WebhookEzsignDocumentCompleted;
use EzmaxApi::Object::WebhookEzsignDocumentFormCompleted;
use EzmaxApi::Object::WebhookEzsignDocumentUnsent;
use EzmaxApi::Object::WebhookEzsignEzsignsignerAcceptclause;
use EzmaxApi::Object::WebhookEzsignEzsignsignerConnect;
use EzmaxApi::Object::WebhookEzsignFolderCompleted;
use EzmaxApi::Object::WebhookEzsignFolderDisposed;
use EzmaxApi::Object::WebhookEzsignFolderSent;
use EzmaxApi::Object::WebhookEzsignFolderUnsent;
use EzmaxApi::Object::WebhookEzsignSignatureSigned;
use EzmaxApi::Object::WebhookGetHistoryV1Response;
use EzmaxApi::Object::WebhookGetHistoryV1ResponseMPayload;
use EzmaxApi::Object::WebhookGetListV1Response;
use EzmaxApi::Object::WebhookGetListV1ResponseMPayload;
use EzmaxApi::Object::WebhookGetObjectV2Response;
use EzmaxApi::Object::WebhookGetObjectV2ResponseMPayload;
use EzmaxApi::Object::WebhookListElement;
use EzmaxApi::Object::WebhookRegenerateApikeyV1Request;
use EzmaxApi::Object::WebhookRegenerateApikeyV1Response;
use EzmaxApi::Object::WebhookRegenerateApikeyV1ResponseMPayload;
use EzmaxApi::Object::WebhookRequest;
use EzmaxApi::Object::WebhookRequestCompound;
use EzmaxApi::Object::WebhookResponse;
use EzmaxApi::Object::WebhookResponseCompound;
use EzmaxApi::Object::WebhookTestV1Response;
use EzmaxApi::Object::WebhookUserUserCreated;
use EzmaxApi::Object::WebhookUserstagedUserstagedCreated;
use EzmaxApi::Object::WebhookheaderRequest;
use EzmaxApi::Object::WebhookheaderRequestCompound;
use EzmaxApi::Object::WebhookheaderResponse;
use EzmaxApi::Object::WebhookheaderResponseCompound;
use EzmaxApi::Object::WebsiteRequest;
use EzmaxApi::Object::WebsiteRequestCompound;
use EzmaxApi::Object::WebsocketRequestServerGetWebsocketIDV1;
use EzmaxApi::Object::WebsocketResponseErrorV1;
use EzmaxApi::Object::WebsocketResponseErrorV1MPayload;
use EzmaxApi::Object::WebsocketResponseGetWebsocketIDV1;
use EzmaxApi::Object::WebsocketResponseGetWebsocketIDV1MPayload;
use EzmaxApi::Object::WebsocketResponseInformationV1;
use EzmaxApi::Object::WebsocketResponseInformationV1MPayload;
# for displaying the API response data
use Data::Dumper;
my $api_instance = EzmaxApi::GlobalCustomerApi->new(
);
my $pks_customer_code = "pks_customer_code_example"; # string |
my $s_infrastructureproduct_code = "s_infrastructureproduct_code_example"; # string | The infrastructure product Code If undefined, \"appcluster01\" is assumed
eval {
my $result = $api_instance->global_customer_get_endpoint_v1(pks_customer_code => $pks_customer_code, s_infrastructureproduct_code => $s_infrastructureproduct_code);
print Dumper($result);
};
if ($@) {
warn "Exception when calling GlobalCustomerApi->global_customer_get_endpoint_v1: $@\n";
}
All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest
Class | Method | HTTP request | Description |
---|---|---|---|
GlobalCustomerApi | global_customer_get_endpoint_v1 | GET /1/customer/{pksCustomerCode}/endpoint | Get customer endpoint |
GlobalEzmaxclientApi | global_ezmaxclient_version_v1 | GET /1/ezmaxclient/{pksEzmaxclientOs}/version | Retrieve the latest version of the Ezmaxclient |
GlobalEzmaxcustomerApi | global_ezmaxcustomer_get_configuration_v1 | GET /1/ezmaxcustomer/{pksEzmaxcustomerCode}/getConfiguration | Get ezmaxcustomer configuration |
ModuleEzsignApi | ezsign_suggest_signers_v1 | GET /1/module/ezsign/suggestSigners | Suggest signers |
ModuleEzsignApi | ezsign_suggest_templates_v1 | GET /1/module/ezsign/suggestTemplates | Suggest templates |
ModuleReportApi | report_get_report_from_cache_v1 | GET /1/module/report/getReportFromCache/{sReportgroupCacheID} | Retrieve report from cache |
ModuleUserApi | user_create_ezsignuser_v1 | POST /1/module/user/createezsignuser | Create a new User of type Ezsignuser |
ObjectActivesessionApi | activesession_get_current_v1 | GET /1/object/activesession/getCurrent | Get Current Activesession |
ObjectActivesessionApi | activesession_get_list_v1 | GET /1/object/activesession/getList | Retrieve Activesession list |
ObjectApikeyApi | apikey_create_object_v2 | POST /2/object/apikey | Create a new Apikey |
ObjectApikeyApi | apikey_edit_object_v1 | PUT /1/object/apikey/{pkiApikeyID} | Edit an existing Apikey |
ObjectApikeyApi | apikey_edit_permissions_v1 | PUT /1/object/apikey/{pkiApikeyID}/editPermissions | Edit multiple Permissions |
ObjectApikeyApi | apikey_get_cors_v1 | GET /1/object/apikey/{pkiApikeyID}/getCors | Retrieve an existing Apikey's cors |
ObjectApikeyApi | apikey_get_list_v1 | GET /1/object/apikey/getList | Retrieve Apikey list |
ObjectApikeyApi | apikey_get_object_v2 | GET /2/object/apikey/{pkiApikeyID} | Retrieve an existing Apikey |
ObjectApikeyApi | apikey_get_permissions_v1 | GET /1/object/apikey/{pkiApikeyID}/getPermissions | Retrieve an existing Apikey's Permissions |
ObjectApikeyApi | apikey_get_subnets_v1 | GET /1/object/apikey/{pkiApikeyID}/getSubnets | Retrieve an existing Apikey's subnets |
ObjectApikeyApi | apikey_regenerate_v1 | POST /1/object/apikey/{pkiApikeyID}/regenerate | Regenerate the Apikey |
ObjectAttachmentApi | attachment_download_v1 | GET /1/object/attachment/{pkiAttachmentID}/download | Retrieve the content |
ObjectAttachmentApi | attachment_get_attachmentlogs_v1 | GET /1/object/attachment/{pkiAttachmentID}/getAttachmentlogs | Retrieve the Attachmentlogs |
ObjectAttachmentApi | attachment_get_download_url_v1 | GET /1/object/attachment/{pkiAttachmentID}/getDownloadUrl | Retrieve a URL to download attachments. |
ObjectBillingentityexternalApi | billingentityexternal_get_autocomplete_v2 | GET /2/object/billingentityexternal/getAutocomplete/{sSelector} | Retrieve Billingentityexternals and IDs |
ObjectBillingentityinternalApi | billingentityinternal_create_object_v1 | POST /1/object/billingentityinternal | Create a new Billingentityinternal |
ObjectBillingentityinternalApi | billingentityinternal_edit_object_v1 | PUT /1/object/billingentityinternal/{pkiBillingentityinternalID} | Edit an existing Billingentityinternal |
ObjectBillingentityinternalApi | billingentityinternal_get_autocomplete_v2 | GET /2/object/billingentityinternal/getAutocomplete/{sSelector} | Retrieve Billingentityinternals and IDs |
ObjectBillingentityinternalApi | billingentityinternal_get_list_v1 | GET /1/object/billingentityinternal/getList | Retrieve Billingentityinternal list |
ObjectBillingentityinternalApi | billingentityinternal_get_object_v2 | GET /2/object/billingentityinternal/{pkiBillingentityinternalID} | Retrieve an existing Billingentityinternal |
ObjectBrandingApi | branding_create_object_v1 | POST /1/object/branding | Create a new Branding |
ObjectBrandingApi | branding_edit_object_v1 | PUT /1/object/branding/{pkiBrandingID} | Edit an existing Branding |
ObjectBrandingApi | branding_get_autocomplete_v2 | GET /2/object/branding/getAutocomplete/{sSelector} | Retrieve Brandings and IDs |
ObjectBrandingApi | branding_get_list_v1 | GET /1/object/branding/getList | Retrieve Branding list |
ObjectBrandingApi | branding_get_object_v2 | GET /2/object/branding/{pkiBrandingID} | Retrieve an existing Branding |
ObjectBuyercontractApi | buyercontract_get_communication_list_v1 | GET /1/object/buyercontract/{pkiBuyercontractID}/getCommunicationList | Retrieve Communication list |
ObjectClonehistoryApi | clonehistory_get_list_v1 | GET /1/object/clonehistory/getList | Retrieve Clonehistory list |
ObjectCommunicationApi | communication_send_v1 | POST /1/object/communication/send | Send a new Communication |
ObjectCompanyApi | company_get_autocomplete_v2 | GET /2/object/company/getAutocomplete/{sSelector} | Retrieve Companys and IDs |
ObjectCorsApi | cors_create_object_v1 | POST /1/object/cors | Create a new Cors |
ObjectCorsApi | cors_delete_object_v1 | DELETE /1/object/cors/{pkiCorsID} | Delete an existing Cors |
ObjectCorsApi | cors_edit_object_v1 | PUT /1/object/cors/{pkiCorsID} | Edit an existing Cors |
ObjectCorsApi | cors_get_object_v2 | GET /2/object/cors/{pkiCorsID} | Retrieve an existing Cors |
ObjectCountryApi | country_get_autocomplete_v2 | GET /2/object/country/getAutocomplete/{sSelector} | Retrieve Countries and IDs |
ObjectCreditcardclientApi | creditcardclient_create_object_v1 | POST /1/object/creditcardclient | Create a new Creditcardclient |
ObjectCreditcardclientApi | creditcardclient_delete_object_v1 | DELETE /1/object/creditcardclient/{pkiCreditcardclientID} | Delete an existing Creditcardclient |
ObjectCreditcardclientApi | creditcardclient_edit_object_v1 | PUT /1/object/creditcardclient/{pkiCreditcardclientID} | Edit an existing Creditcardclient |
ObjectCreditcardclientApi | creditcardclient_get_autocomplete_v2 | GET /2/object/creditcardclient/getAutocomplete/{sSelector} | Retrieve Creditcardclients and IDs |
ObjectCreditcardclientApi | creditcardclient_get_list_v1 | GET /1/object/creditcardclient/getList | Retrieve Creditcardclient list |
ObjectCreditcardclientApi | creditcardclient_get_object_v2 | GET /2/object/creditcardclient/{pkiCreditcardclientID} | Retrieve an existing Creditcardclient |
ObjectCreditcardtypeApi | creditcardtype_get_autocomplete_v2 | GET /2/object/creditcardtype/getAutocomplete/{sSelector} | Retrieve Creditcardtypes and IDs |
ObjectDepartmentApi | department_get_autocomplete_v2 | GET /2/object/department/getAutocomplete/{sSelector} | Retrieve Departments and IDs |
ObjectDiscussionApi | discussion_create_object_v1 | POST /1/object/discussion | Create a new Discussion |
ObjectDiscussionApi | discussion_delete_object_v1 | DELETE /1/object/discussion/{pkiDiscussionID} | Delete an existing Discussion |
ObjectDiscussionApi | discussion_get_object_v2 | GET /2/object/discussion/{pkiDiscussionID} | Retrieve an existing Discussion |
ObjectDiscussionApi | discussion_patch_object_v1 | PATCH /1/object/discussion/{pkiDiscussionID} | Patch an existing Discussion |
ObjectDiscussionApi | discussion_update_discussionreadstatus_v1 | POST /1/object/discussion/{pkiDiscussionID}/updateDiscussionreadstatus | Update the read status of the discussion |
ObjectDiscussionmembershipApi | discussionmembership_create_object_v1 | POST /1/object/discussionmembership | Create a new Discussionmembership |
ObjectDiscussionmembershipApi | discussionmembership_delete_object_v1 | DELETE /1/object/discussionmembership/{pkiDiscussionmembershipID} | Delete an existing Discussionmembership |
ObjectDiscussionmessageApi | discussionmessage_create_object_v1 | POST /1/object/discussionmessage | Create a new Discussionmessage |
ObjectDiscussionmessageApi | discussionmessage_delete_object_v1 | DELETE /1/object/discussionmessage/{pkiDiscussionmessageID} | Delete an existing Discussionmessage |
ObjectDiscussionmessageApi | discussionmessage_patch_object_v1 | PATCH /1/object/discussionmessage/{pkiDiscussionmessageID} | Patch an existing Discussionmessage |
ObjectElectronicfundstransferApi | electronicfundstransfer_get_communication_list_v1 | GET /1/object/electronicfundstransfer/{pkiElectronicfundstransferID}/getCommunicationList | Retrieve Communication list |
ObjectEmailtypeApi | emailtype_get_autocomplete_v2 | GET /2/object/emailtype/getAutocomplete/{sSelector} | Retrieve Emailtypes and IDs |
ObjectEzmaxinvoicingApi | ezmaxinvoicing_get_autocomplete_v2 | GET /2/object/ezmaxinvoicing/getAutocomplete/{sSelector} | Retrieve Ezmaxinvoicings and IDs |
ObjectEzmaxinvoicingApi | ezmaxinvoicing_get_object_v2 | GET /2/object/ezmaxinvoicing/{pkiEzmaxinvoicingID} | Retrieve an existing Ezmaxinvoicing |
ObjectEzmaxinvoicingApi | ezmaxinvoicing_get_provisional_v1 | GET /1/object/ezmaxinvoicing/getProvisional | Retrieve provisional Ezmaxinvoicing |
ObjectEzmaxproductApi | ezmaxproduct_get_autocomplete_v2 | GET /2/object/ezmaxproduct/getAutocomplete/{sSelector} | Retrieve Ezmaxproducts and IDs |
ObjectEzsignbulksendApi | ezsignbulksend_create_ezsignbulksendtransmission_v1 | POST /1/object/ezsignbulksend/{pkiEzsignbulksendID}/createEzsignbulksendtransmission | Create a new Ezsignbulksendtransmission in the Ezsignbulksend |
ObjectEzsignbulksendApi | ezsignbulksend_create_object_v1 | POST /1/object/ezsignbulksend | Create a new Ezsignbulksend |
ObjectEzsignbulksendApi | ezsignbulksend_delete_object_v1 | DELETE /1/object/ezsignbulksend/{pkiEzsignbulksendID} | Delete an existing Ezsignbulksend |
ObjectEzsignbulksendApi | ezsignbulksend_edit_object_v1 | PUT /1/object/ezsignbulksend/{pkiEzsignbulksendID} | Edit an existing Ezsignbulksend |
ObjectEzsignbulksendApi | ezsignbulksend_get_csv_template_v1 | GET /1/object/ezsignbulksend/{pkiEzsignbulksendID}/getCsvTemplate | Retrieve an existing Ezsignbulksend's empty Csv template |
ObjectEzsignbulksendApi | ezsignbulksend_get_ezsignbulksendtransmissions_v1 | GET /1/object/ezsignbulksend/{pkiEzsignbulksendID}/getEzsignbulksendtransmissions | Retrieve an existing Ezsignbulksend's Ezsignbulksendtransmissions |
ObjectEzsignbulksendApi | ezsignbulksend_get_ezsignsignatures_automatic_v1 | GET /1/object/ezsignbulksend/{pkiEzsignbulksendID}/getEzsignsignaturesAutomatic | Retrieve an existing Ezsignbulksend's automatic Ezsignsignatures |
ObjectEzsignbulksendApi | ezsignbulksend_get_forms_data_v1 | GET /1/object/ezsignbulksend/{pkiEzsignbulksendID}/getFormsData | Retrieve an existing Ezsignbulksend's forms data |
ObjectEzsignbulksendApi | ezsignbulksend_get_list_v1 | GET /1/object/ezsignbulksend/getList | Retrieve Ezsignbulksend list |
ObjectEzsignbulksendApi | ezsignbulksend_get_object_v2 | GET /2/object/ezsignbulksend/{pkiEzsignbulksendID} | Retrieve an existing Ezsignbulksend |
ObjectEzsignbulksendApi | ezsignbulksend_reorder_v1 | POST /1/object/ezsignbulksend/{pkiEzsignbulksendID}/reorder | Reorder Ezsignbulksenddocumentmappings in the Ezsignbulksend |
ObjectEzsignbulksenddocumentmappingApi | ezsignbulksenddocumentmapping_create_object_v1 | POST /1/object/ezsignbulksenddocumentmapping | Create a new Ezsignbulksenddocumentmapping |
ObjectEzsignbulksenddocumentmappingApi | ezsignbulksenddocumentmapping_delete_object_v1 | DELETE /1/object/ezsignbulksenddocumentmapping/{pkiEzsignbulksenddocumentmappingID} | Delete an existing Ezsignbulksenddocumentmapping |
ObjectEzsignbulksenddocumentmappingApi | ezsignbulksenddocumentmapping_get_object_v2 | GET /2/object/ezsignbulksenddocumentmapping/{pkiEzsignbulksenddocumentmappingID} | Retrieve an existing Ezsignbulksenddocumentmapping |
ObjectEzsignbulksendsignermappingApi | ezsignbulksendsignermapping_create_object_v1 | POST /1/object/ezsignbulksendsignermapping | Create a new Ezsignbulksendsignermapping |
ObjectEzsignbulksendsignermappingApi | ezsignbulksendsignermapping_delete_object_v1 | DELETE /1/object/ezsignbulksendsignermapping/{pkiEzsignbulksendsignermappingID} | Delete an existing Ezsignbulksendsignermapping |
ObjectEzsignbulksendsignermappingApi | ezsignbulksendsignermapping_get_object_v2 | GET /2/object/ezsignbulksendsignermapping/{pkiEzsignbulksendsignermappingID} | Retrieve an existing Ezsignbulksendsignermapping |
ObjectEzsignbulksendtransmissionApi | ezsignbulksendtransmission_get_csv_errors_v1 | GET /1/object/ezsignbulksendtransmission/{pkiEzsignbulksendtransmissionID}/getCsvErrors | Retrieve an existing Ezsignbulksendtransmission's Csv containing errors |
ObjectEzsignbulksendtransmissionApi | ezsignbulksendtransmission_get_ezsignsignatures_automatic_v1 | GET /1/object/ezsignbulksendtransmission/{pkiEzsignbulksendtransmissionID}/getEzsignsignaturesAutomatic | Retrieve an existing Ezsignbulksendtransmission's automatic Ezsignsignatures |
ObjectEzsignbulksendtransmissionApi | ezsignbulksendtransmission_get_forms_data_v1 | GET /1/object/ezsignbulksendtransmission/{pkiEzsignbulksendtransmissionID}/getFormsData | Retrieve an existing Ezsignbulksendtransmission's forms data |
ObjectEzsignbulksendtransmissionApi | ezsignbulksendtransmission_get_object_v2 | GET /2/object/ezsignbulksendtransmission/{pkiEzsignbulksendtransmissionID} | Retrieve an existing Ezsignbulksendtransmission |
ObjectEzsigndiscussionApi | ezsigndiscussion_create_object_v1 | POST /1/object/ezsigndiscussion | Create a new Ezsigndiscussion |
ObjectEzsigndiscussionApi | ezsigndiscussion_delete_object_v1 | DELETE /1/object/ezsigndiscussion/{pkiEzsigndiscussionID} | Delete an existing Ezsigndiscussion |
ObjectEzsigndiscussionApi | ezsigndiscussion_get_object_v2 | GET /2/object/ezsigndiscussion/{pkiEzsigndiscussionID} | Retrieve an existing Ezsigndiscussion |
ObjectEzsigndocumentApi | ezsigndocument_apply_ezsigntemplate_v1 | POST /1/object/ezsigndocument/{pkiEzsigndocumentID}/applyezsigntemplate | Apply an Ezsigntemplate to the Ezsigndocument. |
ObjectEzsigndocumentApi | ezsigndocument_apply_ezsigntemplate_v2 | POST /2/object/ezsigndocument/{pkiEzsigndocumentID}/applyEzsigntemplate | Apply an Ezsigntemplate to the Ezsigndocument. |
ObjectEzsigndocumentApi | ezsigndocument_apply_ezsigntemplateglobal_v1 | POST /1/object/ezsigndocument/{pkiEzsigndocumentID}/applyEzsigntemplateglobal | Apply an Ezsigntemplateglobal to the Ezsigndocument. |
ObjectEzsigndocumentApi | ezsigndocument_create_ezsignelements_positioned_by_word_v1 | POST /1/object/ezsigndocument/{pkiEzsigndocumentID}/createEzsignelementsPositionedByWord | Create multiple Ezsignsignatures/Ezsignformfieldgroups |
ObjectEzsigndocumentApi | ezsigndocument_create_object_v1 | POST /1/object/ezsigndocument | Create a new Ezsigndocument |
ObjectEzsigndocumentApi | ezsigndocument_create_object_v2 | POST /2/object/ezsigndocument | Create a new Ezsigndocument |
ObjectEzsigndocumentApi | ezsigndocument_decline_to_sign_v1 | POST /1/object/ezsigndocument/{pkiEzsigndocumentID}/declineToSign | Decline to sign |
ObjectEzsigndocumentApi | ezsigndocument_delete_object_v1 | DELETE /1/object/ezsigndocument/{pkiEzsigndocumentID} | Delete an existing Ezsigndocument |
ObjectEzsigndocumentApi | ezsigndocument_edit_ezsignformfieldgroups_v1 | PUT /1/object/ezsigndocument/{pkiEzsigndocumentID}/editEzsignformfieldgroups | Edit multiple Ezsignformfieldgroups |
ObjectEzsigndocumentApi | ezsigndocument_edit_ezsignsignatures_v1 | PUT /1/object/ezsigndocument/{pkiEzsigndocumentID}/editEzsignsignatures | Edit multiple Ezsignsignatures |
ObjectEzsigndocumentApi | ezsigndocument_end_prematurely_v1 | POST /1/object/ezsigndocument/{pkiEzsigndocumentID}/endPrematurely | End prematurely |
ObjectEzsigndocumentApi | ezsigndocument_flatten_v1 | POST /1/object/ezsigndocument/{pkiEzsigndocumentID}/flatten | Flatten |
ObjectEzsigndocumentApi | ezsigndocument_get_actionable_elements_v1 | GET /1/object/ezsigndocument/{pkiEzsigndocumentID}/getActionableElements | Retrieve actionable elements for the Ezsigndocument |
ObjectEzsigndocumentApi | ezsigndocument_get_attachments_v1 | GET /1/object/ezsigndocument/{pkiEzsigndocumentID}/getAttachments | Retrieve Ezsigndocument's Attachments |
ObjectEzsigndocumentApi | ezsigndocument_get_completed_elements_v1 | GET /1/object/ezsigndocument/{pkiEzsigndocumentID}/getCompletedElements | Retrieve completed elements for the Ezsigndocument |
ObjectEzsigndocumentApi | ezsigndocument_get_download_url_v1 | GET /1/object/ezsigndocument/{pkiEzsigndocumentID}/getDownloadUrl/{eDocumentType} | Retrieve a URL to download documents. |
ObjectEzsigndocumentApi | ezsigndocument_get_ezsignannotations_v1 | GET /1/object/ezsigndocument/{pkiEzsigndocumentID}/getEzsignannotations | Retrieve an existing Ezsigndocument's Ezsignannotations |
ObjectEzsigndocumentApi | ezsigndocument_get_ezsigndiscussions_v1 | GET /1/object/ezsigndocument/{pkiEzsigndocumentID}/getEzsigndiscussions | Retrieve an existing Ezsigndocument's Ezsigndiscussions |
ObjectEzsigndocumentApi | ezsigndocument_get_ezsignformfieldgroups_v1 | GET /1/object/ezsigndocument/{pkiEzsigndocumentID}/getEzsignformfieldgroups | Retrieve an existing Ezsigndocument's Ezsignformfieldgroups |
ObjectEzsigndocumentApi | ezsigndocument_get_ezsignpages_v1 | GET /1/object/ezsigndocument/{pkiEzsigndocumentID}/getEzsignpages | Retrieve an existing Ezsigndocument's Ezsignpages |
ObjectEzsigndocumentApi | ezsigndocument_get_ezsignsignatures_automatic_v1 | GET /1/object/ezsigndocument/{pkiEzsigndocumentID}/getEzsignsignaturesAutomatic | Retrieve an existing Ezsigndocument's automatic Ezsignsignatures |
ObjectEzsigndocumentApi | ezsigndocument_get_ezsignsignatures_v1 | GET /1/object/ezsigndocument/{pkiEzsigndocumentID}/getEzsignsignatures | Retrieve an existing Ezsigndocument's Ezsignsignatures |
ObjectEzsigndocumentApi | ezsigndocument_get_form_data_v1 | GET /1/object/ezsigndocument/{pkiEzsigndocumentID}/getFormData | Retrieve an existing Ezsigndocument's Form Data |
ObjectEzsigndocumentApi | ezsigndocument_get_object_v1 | GET /1/object/ezsigndocument/{pkiEzsigndocumentID} | Retrieve an existing Ezsigndocument |
ObjectEzsigndocumentApi | ezsigndocument_get_object_v2 | GET /2/object/ezsigndocument/{pkiEzsigndocumentID} | Retrieve an existing Ezsigndocument |
ObjectEzsigndocumentApi | ezsigndocument_get_temporary_proof_v1 | GET /1/object/ezsigndocument/{pkiEzsigndocumentID}/getTemporaryProof | Retrieve the temporary proof |
ObjectEzsigndocumentApi | ezsigndocument_get_words_positions_v1 | POST /1/object/ezsigndocument/{pkiEzsigndocumentID}/getWordsPositions | Retrieve positions X,Y of given words from a Ezsigndocument |
ObjectEzsigndocumentApi | ezsigndocument_patch_object_v1 | PATCH /1/object/ezsigndocument/{pkiEzsigndocumentID} | Patch an existing Ezsigndocument |
ObjectEzsigndocumentApi | ezsigndocument_submit_ezsignform_v1 | POST /1/object/ezsigndocument/{pkiEzsigndocumentID}/submitEzsignform | Submit the Ezsignform |
ObjectEzsigndocumentApi | ezsigndocument_unsend_v1 | POST /1/object/ezsigndocument/{pkiEzsigndocumentID}/unsend | Unsend the Ezsigndocument |
ObjectEzsignfolderApi | ezsignfolder_archive_v1 | POST /1/object/ezsignfolder/{pkiEzsignfolderID}/archive | Archive the Ezsignfolder |
ObjectEzsignfolderApi | ezsignfolder_batch_download_v1 | POST /1/object/ezsignfolder/{pkiEzsignfolderID}/batchDownload | Download multiples files from an Ezsignfolder |
ObjectEzsignfolderApi | ezsignfolder_create_object_v1 | POST /1/object/ezsignfolder | Create a new Ezsignfolder |
ObjectEzsignfolderApi | ezsignfolder_create_object_v2 | POST /2/object/ezsignfolder | Create a new Ezsignfolder |
ObjectEzsignfolderApi | ezsignfolder_delete_object_v1 | DELETE /1/object/ezsignfolder/{pkiEzsignfolderID} | Delete an existing Ezsignfolder |
ObjectEzsignfolderApi | ezsignfolder_dispose_ezsignfolders_v1 | POST /1/object/ezsignfolder/disposeEzsignfolders | Dispose Ezsignfolders |
ObjectEzsignfolderApi | ezsignfolder_dispose_v1 | POST /1/object/ezsignfolder/{pkiEzsignfolderID}/dispose | Dispose the Ezsignfolder |
ObjectEzsignfolderApi | ezsignfolder_edit_object_v1 | PUT /1/object/ezsignfolder/{pkiEzsignfolderID} | Edit an existing Ezsignfolder |
ObjectEzsignfolderApi | ezsignfolder_end_prematurely_v1 | POST /1/object/ezsignfolder/{pkiEzsignfolderID}/endPrematurely | End prematurely |
ObjectEzsignfolderApi | ezsignfolder_get_actionable_elements_v1 | GET /1/object/ezsignfolder/{pkiEzsignfolderID}/getActionableElements | Retrieve actionable elements for the Ezsignfolder |
ObjectEzsignfolderApi | ezsignfolder_get_attachment_count_v1 | GET /1/object/ezsignfolder/{pkiEzsignfolderID}/getAttachmentCount | Retrieve Attachment count |
ObjectEzsignfolderApi | ezsignfolder_get_attachments_v1 | GET /1/object/ezsignfolder/{pkiEzsignfolderID}/getAttachments | Retrieve Ezsignfolder's Attachments |
ObjectEzsignfolderApi | ezsignfolder_get_communication_count_v1 | GET /1/object/ezsignfolder/{pkiEzsignfolderID}/getCommunicationCount | Retrieve Communication count |
ObjectEzsignfolderApi | ezsignfolder_get_communication_list_v1 | GET /1/object/ezsignfolder/{pkiEzsignfolderID}/getCommunicationList | Retrieve Communication list |
ObjectEzsignfolderApi | ezsignfolder_get_communicationrecipients_v1 | GET /1/object/ezsignfolder/{pkiEzsignfolderID}/getCommunicationrecipients | Retrieve Ezsignfolder's Communicationrecipient |
ObjectEzsignfolderApi | ezsignfolder_get_communicationsenders_v1 | GET /1/object/ezsignfolder/{pkiEzsignfolderID}/getCommunicationsenders | Retrieve Ezsignfolder's Communicationsender |
ObjectEzsignfolderApi | ezsignfolder_get_ezsigndocuments_v1 | GET /1/object/ezsignfolder/{pkiEzsignfolderID}/getEzsigndocuments | Retrieve an existing Ezsignfolder's Ezsigndocuments |
ObjectEzsignfolderApi | ezsignfolder_get_ezsignfoldersignerassociations_v1 | GET /1/object/ezsignfolder/{pkiEzsignfolderID}/getEzsignfoldersignerassociations | Retrieve an existing Ezsignfolder's Ezsignfoldersignerassociations |
ObjectEzsignfolderApi | ezsignfolder_get_ezsignsignatures_automatic_v1 | GET /1/object/ezsignfolder/{pkiEzsignfolderID}/getEzsignsignaturesAutomatic | Retrieve an existing Ezsignfolder's automatic Ezsignsignatures |
ObjectEzsignfolderApi | ezsignfolder_get_forms_data_v1 | GET /1/object/ezsignfolder/{pkiEzsignfolderID}/getFormsData | Retrieve an existing Ezsignfolder's forms data |
ObjectEzsignfolderApi | ezsignfolder_get_list_v1 | GET /1/object/ezsignfolder/getList | Retrieve Ezsignfolder list |
ObjectEzsignfolderApi | ezsignfolder_get_object_v1 | GET /1/object/ezsignfolder/{pkiEzsignfolderID} | Retrieve an existing Ezsignfolder |
ObjectEzsignfolderApi | ezsignfolder_get_object_v2 | GET /2/object/ezsignfolder/{pkiEzsignfolderID} | Retrieve an existing Ezsignfolder |
ObjectEzsignfolderApi | ezsignfolder_import_ezsignfoldersignerassociations_v1 | POST /1/object/ezsignfolder/{pkiEzsignfolderID}/importEzsignfoldersignerassociations | Import an existing Ezsignfoldersignerassociation into this Ezsignfolder |
ObjectEzsignfolderApi | ezsignfolder_import_ezsigntemplatepackage_v1 | POST /1/object/ezsignfolder/{pkiEzsignfolderID}/importEzsigntemplatepackage | Import an Ezsigntemplatepackage in the Ezsignfolder. |
ObjectEzsignfolderApi | ezsignfolder_reorder_v1 | POST /1/object/ezsignfolder/{pkiEzsignfolderID}/reorder | Reorder Ezsigndocuments in the Ezsignfolder |
ObjectEzsignfolderApi | ezsignfolder_send_v1 | POST /1/object/ezsignfolder/{pkiEzsignfolderID}/send | Send the Ezsignfolder to the signatories for signature |
ObjectEzsignfolderApi | ezsignfolder_send_v3 | POST /3/object/ezsignfolder/{pkiEzsignfolderID}/send | Send the Ezsignfolder to the signatories for signature |
ObjectEzsignfolderApi | ezsignfolder_unsend_v1 | POST /1/object/ezsignfolder/{pkiEzsignfolderID}/unsend | Unsend the Ezsignfolder |
ObjectEzsignfoldersignerassociationApi | ezsignfoldersignerassociation_create_embedded_url_v1 | POST /1/object/ezsignfoldersignerassociation/{pkiEzsignfoldersignerassociationID}/createEmbeddedUrl | Creates an Url to allow embedded signing |
ObjectEzsignfoldersignerassociationApi | ezsignfoldersignerassociation_create_object_v1 | POST /1/object/ezsignfoldersignerassociation | Create a new Ezsignfoldersignerassociation |
ObjectEzsignfoldersignerassociationApi | ezsignfoldersignerassociation_create_object_v2 | POST /2/object/ezsignfoldersignerassociation | Create a new Ezsignfoldersignerassociation |
ObjectEzsignfoldersignerassociationApi | ezsignfoldersignerassociation_delete_object_v1 | DELETE /1/object/ezsignfoldersignerassociation/{pkiEzsignfoldersignerassociationID} | Delete an existing Ezsignfoldersignerassociation |
ObjectEzsignfoldersignerassociationApi | ezsignfoldersignerassociation_edit_object_v1 | PUT /1/object/ezsignfoldersignerassociation/{pkiEzsignfoldersignerassociationID} | Edit an existing Ezsignfoldersignerassociation |
ObjectEzsignfoldersignerassociationApi | ezsignfoldersignerassociation_force_disconnect_v1 | POST /1/object/ezsignfoldersignerassociation/{pkiEzsignfoldersignerassociationID}/forceDisconnect | Disconnects the Ezsignfoldersignerassociation |
ObjectEzsignfoldersignerassociationApi | ezsignfoldersignerassociation_get_in_person_login_url_v1 | GET /1/object/ezsignfoldersignerassociation/{pkiEzsignfoldersignerassociationID}/getInPersonLoginUrl | Retrieve a Login Url to allow In-Person signing |
ObjectEzsignfoldersignerassociationApi | ezsignfoldersignerassociation_get_object_v1 | GET /1/object/ezsignfoldersignerassociation/{pkiEzsignfoldersignerassociationID} | Retrieve an existing Ezsignfoldersignerassociation |
ObjectEzsignfoldersignerassociationApi | ezsignfoldersignerassociation_get_object_v2 | GET /2/object/ezsignfoldersignerassociation/{pkiEzsignfoldersignerassociationID} | Retrieve an existing Ezsignfoldersignerassociation |
ObjectEzsignfoldersignerassociationApi | ezsignfoldersignerassociation_patch_object_v1 | PATCH /1/object/ezsignfoldersignerassociation/{pkiEzsignfoldersignerassociationID} | Patch an existing Ezsignfoldersignerassociation |
ObjectEzsignfoldertypeApi | ezsignfoldertype_create_object_v2 | POST /2/object/ezsignfoldertype | Create a new Ezsignfoldertype |
ObjectEzsignfoldertypeApi | ezsignfoldertype_edit_object_v1 | PUT /1/object/ezsignfoldertype/{pkiEzsignfoldertypeID} | Edit an existing Ezsignfoldertype |
ObjectEzsignfoldertypeApi | ezsignfoldertype_edit_object_v2 | PUT /2/object/ezsignfoldertype/{pkiEzsignfoldertypeID} | Edit an existing Ezsignfoldertype |
ObjectEzsignfoldertypeApi | ezsignfoldertype_get_autocomplete_v2 | GET /2/object/ezsignfoldertype/getAutocomplete/{sSelector} | Retrieve Ezsignfoldertypes and IDs |
ObjectEzsignfoldertypeApi | ezsignfoldertype_get_list_v1 | GET /1/object/ezsignfoldertype/getList | Retrieve Ezsignfoldertype list |
ObjectEzsignfoldertypeApi | ezsignfoldertype_get_object_v2 | GET /2/object/ezsignfoldertype/{pkiEzsignfoldertypeID} | Retrieve an existing Ezsignfoldertype |
ObjectEzsignfoldertypeApi | ezsignfoldertype_get_object_v3 | GET /3/object/ezsignfoldertype/{pkiEzsignfoldertypeID} | Retrieve an existing Ezsignfoldertype |
ObjectEzsignformfieldgroupApi | ezsignformfieldgroup_create_object_v1 | POST /1/object/ezsignformfieldgroup | Create a new Ezsignformfieldgroup |
ObjectEzsignformfieldgroupApi | ezsignformfieldgroup_delete_object_v1 | DELETE /1/object/ezsignformfieldgroup/{pkiEzsignformfieldgroupID} | Delete an existing Ezsignformfieldgroup |
ObjectEzsignformfieldgroupApi | ezsignformfieldgroup_edit_object_v1 | PUT /1/object/ezsignformfieldgroup/{pkiEzsignformfieldgroupID} | Edit an existing Ezsignformfieldgroup |
ObjectEzsignformfieldgroupApi | ezsignformfieldgroup_get_object_v2 | GET /2/object/ezsignformfieldgroup/{pkiEzsignformfieldgroupID} | Retrieve an existing Ezsignformfieldgroup |
ObjectEzsignpageApi | ezsignpage_consult_v1 | POST /1/object/ezsignpage/{pkiEzsignpageID}/consult | Consult an Ezsignpage |
ObjectEzsignsignatureApi | ezsignsignature_create_object_v1 | POST /1/object/ezsignsignature | Create a new Ezsignsignature |
ObjectEzsignsignatureApi | ezsignsignature_create_object_v2 | POST /2/object/ezsignsignature | Create a new Ezsignsignature |
ObjectEzsignsignatureApi | ezsignsignature_delete_object_v1 | DELETE /1/object/ezsignsignature/{pkiEzsignsignatureID} | Delete an existing Ezsignsignature |
ObjectEzsignsignatureApi | ezsignsignature_edit_object_v1 | PUT /1/object/ezsignsignature/{pkiEzsignsignatureID} | Edit an existing Ezsignsignature |
ObjectEzsignsignatureApi | ezsignsignature_get_ezsignsignatureattachment_v1 | GET /1/object/ezsignsignature/{pkiEzsignsignatureID}/getEzsignsignatureattachment | Retrieve an existing Ezsignsignature's Ezsignsignatureattachments |
ObjectEzsignsignatureApi | ezsignsignature_get_ezsignsignatures_automatic_v1 | GET /1/object/ezsignsignature/getEzsignsignaturesAutomatic | Retrieve all automatic Ezsignsignatures |
ObjectEzsignsignatureApi | ezsignsignature_get_object_v2 | GET /2/object/ezsignsignature/{pkiEzsignsignatureID} | Retrieve an existing Ezsignsignature |
ObjectEzsignsignatureApi | ezsignsignature_sign_v1 | POST /1/object/ezsignsignature/{pkiEzsignsignatureID}/sign | Sign the Ezsignsignature |
ObjectEzsignsignergroupApi | ezsignsignergroup_create_object_v1 | POST /1/object/ezsignsignergroup | Create a new Ezsignsignergroup |
ObjectEzsignsignergroupApi | ezsignsignergroup_delete_object_v1 | DELETE /1/object/ezsignsignergroup/{pkiEzsignsignergroupID} | Delete an existing Ezsignsignergroup |
ObjectEzsignsignergroupApi | ezsignsignergroup_edit_ezsignsignergroupmemberships_v1 | PUT /1/object/ezsignsignergroup/{pkiEzsignsignergroupID}/editEzsignsignergroupmemberships | Edit multiple Ezsignsignergroupmemberships |
ObjectEzsignsignergroupApi | ezsignsignergroup_edit_object_v1 | PUT /1/object/ezsignsignergroup/{pkiEzsignsignergroupID} | Edit an existing Ezsignsignergroup |
ObjectEzsignsignergroupApi | ezsignsignergroup_get_ezsignsignergroupmemberships_v1 | GET /1/object/ezsignsignergroup/{pkiEzsignsignergroupID}/getEzsignsignergroupmemberships | Retrieve an existing Ezsignsignergroup's Ezsignsignergroupmemberships |
ObjectEzsignsignergroupApi | ezsignsignergroup_get_object_v2 | GET /2/object/ezsignsignergroup/{pkiEzsignsignergroupID} | Retrieve an existing Ezsignsignergroup |
ObjectEzsignsignergroupmembershipApi | ezsignsignergroupmembership_create_object_v1 | POST /1/object/ezsignsignergroupmembership | Create a new Ezsignsignergroupmembership |
ObjectEzsignsignergroupmembershipApi | ezsignsignergroupmembership_delete_object_v1 | DELETE /1/object/ezsignsignergroupmembership/{pkiEzsignsignergroupmembershipID} | Delete an existing Ezsignsignergroupmembership |
ObjectEzsignsignergroupmembershipApi | ezsignsignergroupmembership_get_object_v2 | GET /2/object/ezsignsignergroupmembership/{pkiEzsignsignergroupmembershipID} | Retrieve an existing Ezsignsignergroupmembership |
ObjectEzsignsigningreasonApi | ezsignsigningreason_create_object_v1 | POST /1/object/ezsignsigningreason | Create a new Ezsignsigningreason |
ObjectEzsignsigningreasonApi | ezsignsigningreason_edit_object_v1 | PUT /1/object/ezsignsigningreason/{pkiEzsignsigningreasonID} | Edit an existing Ezsignsigningreason |
ObjectEzsignsigningreasonApi | ezsignsigningreason_get_autocomplete_v2 | GET /2/object/ezsignsigningreason/getAutocomplete/{sSelector} | Retrieve Ezsignsigningreasons and IDs |
ObjectEzsignsigningreasonApi | ezsignsigningreason_get_list_v1 | GET /1/object/ezsignsigningreason/getList | Retrieve Ezsignsigningreason list |
ObjectEzsignsigningreasonApi | ezsignsigningreason_get_object_v2 | GET /2/object/ezsignsigningreason/{pkiEzsignsigningreasonID} | Retrieve an existing Ezsignsigningreason |
ObjectEzsigntemplateApi | ezsigntemplate_copy_v1 | POST /1/object/ezsigntemplate/{pkiEzsigntemplateID}/copy | Copy the Ezsigntemplate |
ObjectEzsigntemplateApi | ezsigntemplate_create_object_v1 | POST /1/object/ezsigntemplate | Create a new Ezsigntemplate |
ObjectEzsigntemplateApi | ezsigntemplate_create_object_v2 | POST /2/object/ezsigntemplate | Create a new Ezsigntemplate |
ObjectEzsigntemplateApi | ezsigntemplate_delete_object_v1 | DELETE /1/object/ezsigntemplate/{pkiEzsigntemplateID} | Delete an existing Ezsigntemplate |
ObjectEzsigntemplateApi | ezsigntemplate_edit_object_v1 | PUT /1/object/ezsigntemplate/{pkiEzsigntemplateID} | Edit an existing Ezsigntemplate |
ObjectEzsigntemplateApi | ezsigntemplate_edit_object_v2 | PUT /2/object/ezsigntemplate/{pkiEzsigntemplateID} | Edit an existing Ezsigntemplate |
ObjectEzsigntemplateApi | ezsigntemplate_get_autocomplete_v2 | GET /2/object/ezsigntemplate/getAutocomplete/{sSelector} | Retrieve Ezsigntemplates and IDs |
ObjectEzsigntemplateApi | ezsigntemplate_get_list_v1 | GET /1/object/ezsigntemplate/getList | Retrieve Ezsigntemplate list |
ObjectEzsigntemplateApi | ezsigntemplate_get_object_v1 | GET /1/object/ezsigntemplate/{pkiEzsigntemplateID} | Retrieve an existing Ezsigntemplate |
ObjectEzsigntemplateApi | ezsigntemplate_get_object_v2 | GET /2/object/ezsigntemplate/{pkiEzsigntemplateID} | Retrieve an existing Ezsigntemplate |
ObjectEzsigntemplatedocumentApi | ezsigntemplatedocument_create_object_v1 | POST /1/object/ezsigntemplatedocument | Create a new Ezsigntemplatedocument |
ObjectEzsigntemplatedocumentApi | ezsigntemplatedocument_edit_ezsigntemplateformfieldgroups_v1 | PUT /1/object/ezsigntemplatedocument/{pkiEzsigntemplatedocumentID}/editEzsigntemplateformfieldgroups | Edit multiple Ezsigntemplateformfieldgroups |
ObjectEzsigntemplatedocumentApi | ezsigntemplatedocument_edit_ezsigntemplatesignatures_v1 | PUT /1/object/ezsigntemplatedocument/{pkiEzsigntemplatedocumentID}/editEzsigntemplatesignatures | Edit multiple Ezsigntemplatesignatures |
ObjectEzsigntemplatedocumentApi | ezsigntemplatedocument_edit_object_v1 | PUT /1/object/ezsigntemplatedocument/{pkiEzsigntemplatedocumentID} | Edit an existing Ezsigntemplatedocument |
ObjectEzsigntemplatedocumentApi | ezsigntemplatedocument_flatten_v1 | POST /1/object/ezsigntemplatedocument/{pkiEzsigntemplatedocumentID}/flatten | Flatten |
ObjectEzsigntemplatedocumentApi | ezsigntemplatedocument_get_ezsigntemplatedocumentpages_v1 | GET /1/object/ezsigntemplatedocument/{pkiEzsigntemplatedocumentID}/getEzsigntemplatedocumentpages | Retrieve an existing Ezsigntemplatedocument's Ezsigntemplatedocumentpages |
ObjectEzsigntemplatedocumentApi | ezsigntemplatedocument_get_ezsigntemplateformfieldgroups_v1 | GET /1/object/ezsigntemplatedocument/{pkiEzsigntemplatedocumentID}/getEzsigntemplateformfieldgroups | Retrieve an existing Ezsigntemplatedocument's Ezsigntemplateformfieldgroups |
ObjectEzsigntemplatedocumentApi | ezsigntemplatedocument_get_ezsigntemplatesignatures_v1 | GET /1/object/ezsigntemplatedocument/{pkiEzsigntemplatedocumentID}/getEzsigntemplatesignatures | Retrieve an existing Ezsigntemplatedocument's Ezsigntemplatesignatures |
ObjectEzsigntemplatedocumentApi | ezsigntemplatedocument_get_object_v2 | GET /2/object/ezsigntemplatedocument/{pkiEzsigntemplatedocumentID} | Retrieve an existing Ezsigntemplatedocument |
ObjectEzsigntemplatedocumentApi | ezsigntemplatedocument_get_words_positions_v1 | POST /1/object/ezsigntemplatedocument/{pkiEzsigntemplatedocumentID}/getWordsPositions | Retrieve positions X,Y of given words from a Ezsigntemplatedocument |
ObjectEzsigntemplatedocumentApi | ezsigntemplatedocument_patch_object_v1 | PATCH /1/object/ezsigntemplatedocument/{pkiEzsigntemplatedocumentID} | Patch an existing Ezsigntemplatedocument |
ObjectEzsigntemplateformfieldgroupApi | ezsigntemplateformfieldgroup_create_object_v1 | POST /1/object/ezsigntemplateformfieldgroup | Create a new Ezsigntemplateformfieldgroup |
ObjectEzsigntemplateformfieldgroupApi | ezsigntemplateformfieldgroup_delete_object_v1 | DELETE /1/object/ezsigntemplateformfieldgroup/{pkiEzsigntemplateformfieldgroupID} | Delete an existing Ezsigntemplateformfieldgroup |
ObjectEzsigntemplateformfieldgroupApi | ezsigntemplateformfieldgroup_edit_object_v1 | PUT /1/object/ezsigntemplateformfieldgroup/{pkiEzsigntemplateformfieldgroupID} | Edit an existing Ezsigntemplateformfieldgroup |
ObjectEzsigntemplateformfieldgroupApi | ezsigntemplateformfieldgroup_get_object_v2 | GET /2/object/ezsigntemplateformfieldgroup/{pkiEzsigntemplateformfieldgroupID} | Retrieve an existing Ezsigntemplateformfieldgroup |
ObjectEzsigntemplateglobalApi | ezsigntemplateglobal_get_autocomplete_v2 | GET /2/object/ezsigntemplateglobal/getAutocomplete/{sSelector} | Retrieve Ezsigntemplateglobals and IDs |
ObjectEzsigntemplateglobalApi | ezsigntemplateglobal_get_object_v2 | GET /2/object/ezsigntemplateglobal/{pkiEzsigntemplateglobalID} | Retrieve an existing Ezsigntemplateglobal |
ObjectEzsigntemplatepackageApi | ezsigntemplatepackage_create_object_v1 | POST /1/object/ezsigntemplatepackage | Create a new Ezsigntemplatepackage |
ObjectEzsigntemplatepackageApi | ezsigntemplatepackage_delete_object_v1 | DELETE /1/object/ezsigntemplatepackage/{pkiEzsigntemplatepackageID} | Delete an existing Ezsigntemplatepackage |
ObjectEzsigntemplatepackageApi | ezsigntemplatepackage_edit_ezsigntemplatepackagesigners_v1 | PUT /1/object/ezsigntemplatepackage/{pkiEzsigntemplatepackageID}/editEzsigntemplatepackagesigners | Edit multiple Ezsigntemplatepackagesigners |
ObjectEzsigntemplatepackageApi | ezsigntemplatepackage_edit_object_v1 | PUT /1/object/ezsigntemplatepackage/{pkiEzsigntemplatepackageID} | Edit an existing Ezsigntemplatepackage |
ObjectEzsigntemplatepackageApi | ezsigntemplatepackage_get_autocomplete_v2 | GET /2/object/ezsigntemplatepackage/getAutocomplete/{sSelector} | Retrieve Ezsigntemplatepackages and IDs |
ObjectEzsigntemplatepackageApi | ezsigntemplatepackage_get_list_v1 | GET /1/object/ezsigntemplatepackage/getList | Retrieve Ezsigntemplatepackage list |
ObjectEzsigntemplatepackageApi | ezsigntemplatepackage_get_object_v2 | GET /2/object/ezsigntemplatepackage/{pkiEzsigntemplatepackageID} | Retrieve an existing Ezsigntemplatepackage |
ObjectEzsigntemplatepackagemembershipApi | ezsigntemplatepackagemembership_create_object_v1 | POST /1/object/ezsigntemplatepackagemembership | Create a new Ezsigntemplatepackagemembership |
ObjectEzsigntemplatepackagemembershipApi | ezsigntemplatepackagemembership_delete_object_v1 | DELETE /1/object/ezsigntemplatepackagemembership/{pkiEzsigntemplatepackagemembershipID} | Delete an existing Ezsigntemplatepackagemembership |
ObjectEzsigntemplatepackagemembershipApi | ezsigntemplatepackagemembership_get_object_v2 | GET /2/object/ezsigntemplatepackagemembership/{pkiEzsigntemplatepackagemembershipID} | Retrieve an existing Ezsigntemplatepackagemembership |
ObjectEzsigntemplatepackagesignerApi | ezsigntemplatepackagesigner_create_object_v1 | POST /1/object/ezsigntemplatepackagesigner | Create a new Ezsigntemplatepackagesigner |
ObjectEzsigntemplatepackagesignerApi | ezsigntemplatepackagesigner_delete_object_v1 | DELETE /1/object/ezsigntemplatepackagesigner/{pkiEzsigntemplatepackagesignerID} | Delete an existing Ezsigntemplatepackagesigner |
ObjectEzsigntemplatepackagesignerApi | ezsigntemplatepackagesigner_edit_object_v1 | PUT /1/object/ezsigntemplatepackagesigner/{pkiEzsigntemplatepackagesignerID} | Edit an existing Ezsigntemplatepackagesigner |
ObjectEzsigntemplatepackagesignerApi | ezsigntemplatepackagesigner_get_object_v2 | GET /2/object/ezsigntemplatepackagesigner/{pkiEzsigntemplatepackagesignerID} | Retrieve an existing Ezsigntemplatepackagesigner |
ObjectEzsigntemplatepackagesignermembershipApi | ezsigntemplatepackagesignermembership_create_object_v1 | POST /1/object/ezsigntemplatepackagesignermembership | Create a new Ezsigntemplatepackagesignermembership |
ObjectEzsigntemplatepackagesignermembershipApi | ezsigntemplatepackagesignermembership_delete_object_v1 | DELETE /1/object/ezsigntemplatepackagesignermembership/{pkiEzsigntemplatepackagesignermembershipID} | Delete an existing Ezsigntemplatepackagesignermembership |
ObjectEzsigntemplatepackagesignermembershipApi | ezsigntemplatepackagesignermembership_get_object_v2 | GET /2/object/ezsigntemplatepackagesignermembership/{pkiEzsigntemplatepackagesignermembershipID} | Retrieve an existing Ezsigntemplatepackagesignermembership |
ObjectEzsigntemplatesignatureApi | ezsigntemplatesignature_create_object_v1 | POST /1/object/ezsigntemplatesignature | Create a new Ezsigntemplatesignature |
ObjectEzsigntemplatesignatureApi | ezsigntemplatesignature_delete_object_v1 | DELETE /1/object/ezsigntemplatesignature/{pkiEzsigntemplatesignatureID} | Delete an existing Ezsigntemplatesignature |
ObjectEzsigntemplatesignatureApi | ezsigntemplatesignature_edit_object_v1 | PUT /1/object/ezsigntemplatesignature/{pkiEzsigntemplatesignatureID} | Edit an existing Ezsigntemplatesignature |
ObjectEzsigntemplatesignatureApi | ezsigntemplatesignature_get_object_v2 | GET /2/object/ezsigntemplatesignature/{pkiEzsigntemplatesignatureID} | Retrieve an existing Ezsigntemplatesignature |
ObjectEzsigntemplatesignerApi | ezsigntemplatesigner_create_object_v1 | POST /1/object/ezsigntemplatesigner | Create a new Ezsigntemplatesigner |
ObjectEzsigntemplatesignerApi | ezsigntemplatesigner_delete_object_v1 | DELETE /1/object/ezsigntemplatesigner/{pkiEzsigntemplatesignerID} | Delete an existing Ezsigntemplatesigner |
ObjectEzsigntemplatesignerApi | ezsigntemplatesigner_edit_object_v1 | PUT /1/object/ezsigntemplatesigner/{pkiEzsigntemplatesignerID} | Edit an existing Ezsigntemplatesigner |
ObjectEzsigntemplatesignerApi | ezsigntemplatesigner_get_object_v2 | GET /2/object/ezsigntemplatesigner/{pkiEzsigntemplatesignerID} | Retrieve an existing Ezsigntemplatesigner |
ObjectEzsigntsarequirementApi | ezsigntsarequirement_get_autocomplete_v2 | GET /2/object/ezsigntsarequirement/getAutocomplete/{sSelector} | Retrieve Ezsigntsarequirements and IDs |
ObjectFontApi | font_get_autocomplete_v2 | GET /2/object/font/getAutocomplete/{sSelector} | Retrieve Fonts and IDs |
ObjectFranchisebrokerApi | franchisebroker_get_autocomplete_v2 | GET /2/object/franchisebroker/getAutocomplete/{sSelector} | Retrieve Franchisebrokers and IDs |
ObjectFranchiseofficeApi | franchiseoffice_get_autocomplete_v2 | GET /2/object/franchiseoffice/getAutocomplete/{sSelector} | Retrieve Franchiseoffices and IDs |
ObjectFranchisereferalincomeApi | franchisereferalincome_create_object_v2 | POST /2/object/franchisereferalincome | Create a new Franchisereferalincome |
ObjectInscriptionApi | inscription_get_attachments_v1 | GET /1/object/inscription/{pkiInscriptionID}/getAttachments | Retrieve Inscription's Attachments |
ObjectInscriptionApi | inscription_get_communication_list_v1 | GET /1/object/inscription/{pkiInscriptionID}/getCommunicationList | Retrieve Communication list |
ObjectInscriptionApi | inscription_get_communicationsenders_v1 | GET /1/object/inscription/{pkiInscriptionID}/getCommunicationsenders | Retrieve Inscription's Communicationsender |
ObjectInscriptionnotauthenticatedApi | inscriptionnotauthenticated_get_communication_list_v1 | GET /1/object/inscriptionnotauthenticated/{pkiInscriptionnotauthenticatedID}/getCommunicationList | Retrieve Communication list |
ObjectInscriptiontempApi | inscriptiontemp_get_communication_list_v1 | GET /1/object/inscriptiontemp/{pkiInscriptiontempID}/getCommunicationList | Retrieve Communication list |
ObjectInvoiceApi | invoice_get_attachments_v1 | GET /1/object/invoice/{pkiInvoiceID}/getAttachments | Retrieve Invoice's Attachments |
ObjectInvoiceApi | invoice_get_communication_list_v1 | GET /1/object/invoice/{pkiInvoiceID}/getCommunicationList | Retrieve Communication list |
ObjectLanguageApi | language_get_autocomplete_v2 | GET /2/object/language/getAutocomplete/{sSelector} | Retrieve Languages and IDs |
ObjectModuleApi | module_get_autocomplete_v2 | GET /2/object/module/getAutocomplete/{sSelector} | Retrieve Modules and IDs |
ObjectModulegroupApi | modulegroup_get_all_v1 | GET /1/object/modulegroup/getAll/{eContext} | Retrieve all Modulegroups |
ObjectNotificationsectionApi | notificationsection_get_notificationtests_v1 | GET /1/object/notificationsection/{pkiNotificationsectionID}/getNotificationtests | Retrieve an existing Notificationsection's Notificationtests |
ObjectNotificationtestApi | notificationtest_get_elements_v1 | GET /1/object/notificationtest/{pkiNotificationtestID}/getElements | Retrieve an existing Notificationtest's Elements |
ObjectOtherincomeApi | otherincome_get_communication_list_v1 | GET /1/object/otherincome/{pkiOtherincomeID}/getCommunicationList | Retrieve Communication list |
ObjectPaymenttermApi | paymentterm_create_object_v1 | POST /1/object/paymentterm | Create a new Paymentterm |
ObjectPaymenttermApi | paymentterm_edit_object_v1 | PUT /1/object/paymentterm/{pkiPaymenttermID} | Edit an existing Paymentterm |
ObjectPaymenttermApi | paymentterm_get_autocomplete_v2 | GET /2/object/paymentterm/getAutocomplete/{sSelector} | Retrieve Paymentterms and IDs |
ObjectPaymenttermApi | paymentterm_get_list_v1 | GET /1/object/paymentterm/getList | Retrieve Paymentterm list |
ObjectPaymenttermApi | paymentterm_get_object_v2 | GET /2/object/paymentterm/{pkiPaymenttermID} | Retrieve an existing Paymentterm |
ObjectPeriodApi | period_get_autocomplete_v2 | GET /2/object/period/getAutocomplete/{sSelector} | Retrieve Periods and IDs |
ObjectPermissionApi | permission_create_object_v1 | POST /1/object/permission | Create a new Permission |
ObjectPermissionApi | permission_delete_object_v1 | DELETE /1/object/permission/{pkiPermissionID} | Delete an existing Permission |
ObjectPermissionApi | permission_edit_object_v1 | PUT /1/object/permission/{pkiPermissionID} | Edit an existing Permission |
ObjectPermissionApi | permission_get_object_v2 | GET /2/object/permission/{pkiPermissionID} | Retrieve an existing Permission |
ObjectPhonetypeApi | phonetype_get_autocomplete_v2 | GET /2/object/phonetype/getAutocomplete/{sSelector} | Retrieve Phonetypes and IDs |
ObjectProvinceApi | province_get_autocomplete_v2 | GET /2/object/province/getAutocomplete/{sSelector} | Retrieve Provinces and IDs |
ObjectRejectedoffertopurchaseApi | rejectedoffertopurchase_get_communication_list_v1 | GET /1/object/rejectedoffertopurchase/{pkiRejectedoffertopurchaseID}/getCommunicationList | Retrieve Communication list |
ObjectSecretquestionApi | secretquestion_get_autocomplete_v2 | GET /2/object/secretquestion/getAutocomplete/{sSelector} | Retrieve Secretquestions and IDs |
ObjectSessionhistoryApi | sessionhistory_get_list_v1 | GET /1/object/sessionhistory/getList | Retrieve Sessionhistory list |
ObjectSignatureApi | signature_create_object_v1 | POST /1/object/signature | Create a new Signature |
ObjectSignatureApi | signature_delete_object_v1 | DELETE /1/object/signature/{pkiSignatureID} | Delete an existing Signature |
ObjectSignatureApi | signature_edit_object_v1 | PUT /1/object/signature/{pkiSignatureID} | Edit an existing Signature |
ObjectSignatureApi | signature_get_object_v2 | GET /2/object/signature/{pkiSignatureID} | Retrieve an existing Signature |
ObjectSubnetApi | subnet_create_object_v1 | POST /1/object/subnet | Create a new Subnet |
ObjectSubnetApi | subnet_delete_object_v1 | DELETE /1/object/subnet/{pkiSubnetID} | Delete an existing Subnet |
ObjectSubnetApi | subnet_edit_object_v1 | PUT /1/object/subnet/{pkiSubnetID} | Edit an existing Subnet |
ObjectSubnetApi | subnet_get_object_v2 | GET /2/object/subnet/{pkiSubnetID} | Retrieve an existing Subnet |
ObjectSystemconfigurationApi | systemconfiguration_edit_object_v1 | PUT /1/object/systemconfiguration/{pkiSystemconfigurationID} | Edit an existing Systemconfiguration |
ObjectSystemconfigurationApi | systemconfiguration_get_object_v2 | GET /2/object/systemconfiguration/{pkiSystemconfigurationID} | Retrieve an existing Systemconfiguration |
ObjectTaxassignmentApi | taxassignment_get_autocomplete_v2 | GET /2/object/taxassignment/getAutocomplete/{sSelector} | Retrieve Taxassignments and IDs |
ObjectTimezoneApi | timezone_get_autocomplete_v2 | GET /2/object/timezone/getAutocomplete/{sSelector} | Retrieve Timezones and IDs |
ObjectUserApi | user_create_object_v1 | POST /1/object/user | Create a new User |
ObjectUserApi | user_create_object_v2 | POST /2/object/user | Create a new User |
ObjectUserApi | user_edit_object_v1 | PUT /1/object/user/{pkiUserID} | Edit an existing User |
ObjectUserApi | user_edit_permissions_v1 | PUT /1/object/user/{pkiUserID}/editPermissions | Edit multiple Permissions |
ObjectUserApi | user_get_apikeys_v1 | GET /1/object/user/{pkiUserID}/getApikeys | Retrieve an existing User's Apikeys |
ObjectUserApi | user_get_autocomplete_v2 | GET /2/object/user/getAutocomplete/{sSelector} | Retrieve Users and IDs |
ObjectUserApi | user_get_effective_permissions_v1 | GET /1/object/user/{pkiUserID}/getEffectivePermissions | Retrieve an existing User's Effective Permissions |
ObjectUserApi | user_get_list_v1 | GET /1/object/user/getList | Retrieve User list |
ObjectUserApi | user_get_object_v2 | GET /2/object/user/{pkiUserID} | Retrieve an existing User |
ObjectUserApi | user_get_permissions_v1 | GET /1/object/user/{pkiUserID}/getPermissions | Retrieve an existing User's Permissions |
ObjectUserApi | user_get_subnets_v1 | GET /1/object/user/{pkiUserID}/getSubnets | Retrieve an existing User's Subnets |
ObjectUserApi | user_get_usergroupexternals_v1 | GET /1/object/user/{pkiUserID}/getUsergroupexternals | Get User's Usergroupexternals |
ObjectUserApi | user_get_usergroups_v1 | GET /1/object/user/{pkiUserID}/getUsergroups | Get User's Usergroups |
ObjectUserApi | user_send_password_reset_v1 | POST /1/object/user/{pkiUserID}/sendPasswordReset | Send password reset |
ObjectUsergroupApi | usergroup_create_object_v1 | POST /1/object/usergroup | Create a new Usergroup |
ObjectUsergroupApi | usergroup_edit_object_v1 | PUT /1/object/usergroup/{pkiUsergroupID} | Edit an existing Usergroup |
ObjectUsergroupApi | usergroup_edit_permissions_v1 | PUT /1/object/usergroup/{pkiUsergroupID}/editPermissions | Edit multiple Permissions |
ObjectUsergroupApi | usergroup_edit_usergroupdelegations_v1 | PUT /1/object/usergroup/{pkiUsergroupID}/editUsergroupdelegations | Edit multiple Usergroupdelegations |
ObjectUsergroupApi | usergroup_edit_usergroupmemberships_v1 | PUT /1/object/usergroup/{pkiUsergroupID}/editUsergroupmemberships | Edit multiple Usergroupmemberships |
ObjectUsergroupApi | usergroup_get_autocomplete_v2 | GET /2/object/usergroup/getAutocomplete/{sSelector} | Retrieve Usergroups and IDs |
ObjectUsergroupApi | usergroup_get_list_v1 | GET /1/object/usergroup/getList | Retrieve Usergroup list |
ObjectUsergroupApi | usergroup_get_object_v2 | GET /2/object/usergroup/{pkiUsergroupID} | Retrieve an existing Usergroup |
ObjectUsergroupApi | usergroup_get_permissions_v1 | GET /1/object/usergroup/{pkiUsergroupID}/getPermissions | Retrieve an existing Usergroup's Permissions |
ObjectUsergroupApi | usergroup_get_usergroupdelegations_v1 | GET /1/object/usergroup/{pkiUsergroupID}/getUsergroupdelegations | Retrieve an existing Usergroup's Usergroupdelegations |
ObjectUsergroupApi | usergroup_get_usergroupmemberships_v1 | GET /1/object/usergroup/{pkiUsergroupID}/getUsergroupmemberships | Retrieve an existing Usergroup's Usergroupmemberships |
ObjectUsergroupdelegationApi | usergroupdelegation_create_object_v1 | POST /1/object/usergroupdelegation | Create a new Usergroupdelegation |
ObjectUsergroupdelegationApi | usergroupdelegation_delete_object_v1 | DELETE /1/object/usergroupdelegation/{pkiUsergroupdelegationID} | Delete an existing Usergroupdelegation |
ObjectUsergroupdelegationApi | usergroupdelegation_edit_object_v1 | PUT /1/object/usergroupdelegation/{pkiUsergroupdelegationID} | Edit an existing Usergroupdelegation |
ObjectUsergroupdelegationApi | usergroupdelegation_get_object_v2 | GET /2/object/usergroupdelegation/{pkiUsergroupdelegationID} | Retrieve an existing Usergroupdelegation |
ObjectUsergroupexternalApi | usergroupexternal_create_object_v1 | POST /1/object/usergroupexternal | Create a new Usergroupexternal |
ObjectUsergroupexternalApi | usergroupexternal_delete_object_v1 | DELETE /1/object/usergroupexternal/{pkiUsergroupexternalID} | Delete an existing Usergroupexternal |
ObjectUsergroupexternalApi | usergroupexternal_edit_object_v1 | PUT /1/object/usergroupexternal/{pkiUsergroupexternalID} | Edit an existing Usergroupexternal |
ObjectUsergroupexternalApi | usergroupexternal_get_autocomplete_v2 | GET /2/object/usergroupexternal/getAutocomplete/{sSelector} | Retrieve Usergroupexternals and IDs |
ObjectUsergroupexternalApi | usergroupexternal_get_list_v1 | GET /1/object/usergroupexternal/getList | Retrieve Usergroupexternal list |
ObjectUsergroupexternalApi | usergroupexternal_get_object_v2 | GET /2/object/usergroupexternal/{pkiUsergroupexternalID} | Retrieve an existing Usergroupexternal |
ObjectUsergroupexternalApi | usergroupexternal_get_usergroupexternalmemberships_v1 | GET /1/object/usergroupexternal/{pkiUsergroupexternalID}/getUsergroupexternalmemberships | Retrieve an existing Usergroupexternal's Usergroupexternalmemberships |
ObjectUsergroupexternalApi | usergroupexternal_get_usergroups_v1 | GET /1/object/usergroupexternal/{pkiUsergroupexternalID}/getUsergroups | Get Usergroupexternal's Usergroups |
ObjectUsergroupmembershipApi | usergroupmembership_create_object_v1 | POST /1/object/usergroupmembership | Create a new Usergroupmembership |
ObjectUsergroupmembershipApi | usergroupmembership_delete_object_v1 | DELETE /1/object/usergroupmembership/{pkiUsergroupmembershipID} | Delete an existing Usergroupmembership |
ObjectUsergroupmembershipApi | usergroupmembership_edit_object_v1 | PUT /1/object/usergroupmembership/{pkiUsergroupmembershipID} | Edit an existing Usergroupmembership |
ObjectUsergroupmembershipApi | usergroupmembership_get_object_v2 | GET /2/object/usergroupmembership/{pkiUsergroupmembershipID} | Retrieve an existing Usergroupmembership |
ObjectUserlogintypeApi | userlogintype_get_autocomplete_v2 | GET /2/object/userlogintype/getAutocomplete/{sSelector} | Retrieve Userlogintypes and IDs |
ObjectUserstagedApi | userstaged_create_user_v1 | POST /1/object/userstaged/{pkiUserstagedID}/createUser | Create a User from a Userstaged and then map it |
ObjectUserstagedApi | userstaged_delete_object_v1 | DELETE /1/object/userstaged/{pkiUserstagedID} | Delete an existing Userstaged |
ObjectUserstagedApi | userstaged_get_list_v1 | GET /1/object/userstaged/getList | Retrieve Userstaged list |
ObjectUserstagedApi | userstaged_get_object_v2 | GET /2/object/userstaged/{pkiUserstagedID} | Retrieve an existing Userstaged |
ObjectUserstagedApi | userstaged_map_v1 | POST /1/object/userstaged/{pkiUserstagedID}/map | Map the Userstaged to an existing user |
ObjectVariableexpenseApi | variableexpense_create_object_v1 | POST /1/object/variableexpense | Create a new Variableexpense |
ObjectVariableexpenseApi | variableexpense_edit_object_v1 | PUT /1/object/variableexpense/{pkiVariableexpenseID} | Edit an existing Variableexpense |
ObjectVariableexpenseApi | variableexpense_get_autocomplete_v2 | GET /2/object/variableexpense/getAutocomplete/{sSelector} | Retrieve Variableexpenses and IDs |
ObjectVariableexpenseApi | variableexpense_get_list_v1 | GET /1/object/variableexpense/getList | Retrieve Variableexpense list |
ObjectVariableexpenseApi | variableexpense_get_object_v2 | GET /2/object/variableexpense/{pkiVariableexpenseID} | Retrieve an existing Variableexpense |
ObjectVersionhistoryApi | versionhistory_get_object_v2 | GET /2/object/versionhistory/{pkiVersionhistoryID} | Retrieve an existing Versionhistory |
ObjectWebhookApi | webhook_create_object_v2 | POST /2/object/webhook | Create a new Webhook |
ObjectWebhookApi | webhook_delete_object_v1 | DELETE /1/object/webhook/{pkiWebhookID} | Delete an existing Webhook |
ObjectWebhookApi | webhook_edit_object_v1 | PUT /1/object/webhook/{pkiWebhookID} | Edit an existing Webhook |
ObjectWebhookApi | webhook_get_history_v1 | GET /1/object/webhook/{pkiWebhookID}/getHistory | Retrieve the logs for recent Webhook calls |
ObjectWebhookApi | webhook_get_list_v1 | GET /1/object/webhook/getList | Retrieve Webhook list |
ObjectWebhookApi | webhook_get_object_v2 | GET /2/object/webhook/{pkiWebhookID} | Retrieve an existing Webhook |
ObjectWebhookApi | webhook_regenerate_apikey_v1 | POST /1/object/webhook/{pkiWebhookID}/regenerateApikey | Regenerate the Apikey |
ObjectWebhookApi | webhook_test_v1 | POST /1/object/webhook/{pkiWebhookID}/test | Test the Webhook by calling the Url |
ScimGroupsApi | groups_create_object_scim_v2 | POST /2/scim/Groups | Create a new Usergroup |
ScimGroupsApi | groups_delete_object_scim_v2 | DELETE /2/scim/Groups/{groupId} | Delete an existing Usergroup |
ScimGroupsApi | groups_edit_object_scim_v2 | PUT /2/scim/Groups/{groupId} | Edit an existing Usergroup |
ScimGroupsApi | groups_get_list_scim_v2 | GET /2/scim/Groups | Retrieve Usergroup list |
ScimGroupsApi | groups_get_object_scim_v2 | GET /2/scim/Groups/{groupId} | Retrieve an existing Usergroup |
ScimServiceProviderConfigApi | service_provider_config_get_object_scim_v2 | GET /2/scim/ServiceProviderConfig | Get Service Provider Configuration |
ScimUsersApi | users_create_object_scim_v2 | POST /2/scim/Users | Create a new User |
ScimUsersApi | users_delete_object_scim_v2 | DELETE /2/scim/Users/{userId} | Delete an existing User |
ScimUsersApi | users_edit_object_scim_v2 | PUT /2/scim/Users/{userId} | Edit an existing User |
ScimUsersApi | users_get_list_scim_v2 | GET /2/scim/Users | Retrieve User list |
ScimUsersApi | users_get_object_scim_v2 | GET /2/scim/Users/{userId} | Retrieve an existing User |
- EzmaxApi::Object::ActivesessionGetCurrentV1Response
- EzmaxApi::Object::ActivesessionGetCurrentV1ResponseMPayload
- EzmaxApi::Object::ActivesessionGetListV1Response
- EzmaxApi::Object::ActivesessionGetListV1ResponseMPayload
- EzmaxApi::Object::ActivesessionListElement
- EzmaxApi::Object::ActivesessionResponse
- EzmaxApi::Object::ActivesessionResponseCompound
- EzmaxApi::Object::ActivesessionResponseCompoundApikey
- EzmaxApi::Object::ActivesessionResponseCompoundUser
- EzmaxApi::Object::AddressRequest
- EzmaxApi::Object::AddressRequestCompound
- EzmaxApi::Object::ApikeyCreateObjectV2Request
- EzmaxApi::Object::ApikeyCreateObjectV2Response
- EzmaxApi::Object::ApikeyCreateObjectV2ResponseMPayload
- EzmaxApi::Object::ApikeyEditObjectV1Request
- EzmaxApi::Object::ApikeyEditObjectV1Response
- EzmaxApi::Object::ApikeyEditPermissionsV1Request
- EzmaxApi::Object::ApikeyEditPermissionsV1Response
- EzmaxApi::Object::ApikeyEditPermissionsV1ResponseMPayload
- EzmaxApi::Object::ApikeyGetCorsV1Response
- EzmaxApi::Object::ApikeyGetCorsV1ResponseMPayload
- EzmaxApi::Object::ApikeyGetListV1Response
- EzmaxApi::Object::ApikeyGetListV1ResponseMPayload
- EzmaxApi::Object::ApikeyGetObjectV2Response
- EzmaxApi::Object::ApikeyGetObjectV2ResponseMPayload
- EzmaxApi::Object::ApikeyGetPermissionsV1Response
- EzmaxApi::Object::ApikeyGetPermissionsV1ResponseMPayload
- EzmaxApi::Object::ApikeyGetSubnetsV1Response
- EzmaxApi::Object::ApikeyGetSubnetsV1ResponseMPayload
- EzmaxApi::Object::ApikeyListElement
- EzmaxApi::Object::ApikeyRegenerateV1Request
- EzmaxApi::Object::ApikeyRegenerateV1Response
- EzmaxApi::Object::ApikeyRegenerateV1ResponseMPayload
- EzmaxApi::Object::ApikeyRequest
- EzmaxApi::Object::ApikeyRequestCompound
- EzmaxApi::Object::ApikeyResponse
- EzmaxApi::Object::ApikeyResponseCompound
- EzmaxApi::Object::AttachmentGetAttachmentlogsV1Response
- EzmaxApi::Object::AttachmentGetAttachmentlogsV1ResponseMPayload
- EzmaxApi::Object::AttachmentGetDownloadUrlV1Response
- EzmaxApi::Object::AttachmentGetDownloadUrlV1ResponseMPayload
- EzmaxApi::Object::AttachmentResponse
- EzmaxApi::Object::AttachmentResponseCompound
- EzmaxApi::Object::AttachmentlogResponse
- EzmaxApi::Object::AttachmentlogResponseCompound
- EzmaxApi::Object::AttemptResponse
- EzmaxApi::Object::AttemptResponseCompound
- EzmaxApi::Object::BillingentityexternalAutocompleteElementResponse
- EzmaxApi::Object::BillingentityexternalGetAutocompleteV2Response
- EzmaxApi::Object::BillingentityexternalGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::BillingentityinternalAutocompleteElementResponse
- EzmaxApi::Object::BillingentityinternalCreateObjectV1Request
- EzmaxApi::Object::BillingentityinternalCreateObjectV1Response
- EzmaxApi::Object::BillingentityinternalCreateObjectV1ResponseMPayload
- EzmaxApi::Object::BillingentityinternalEditObjectV1Request
- EzmaxApi::Object::BillingentityinternalEditObjectV1Response
- EzmaxApi::Object::BillingentityinternalGetAutocompleteV2Response
- EzmaxApi::Object::BillingentityinternalGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::BillingentityinternalGetListV1Response
- EzmaxApi::Object::BillingentityinternalGetListV1ResponseMPayload
- EzmaxApi::Object::BillingentityinternalGetObjectV2Response
- EzmaxApi::Object::BillingentityinternalGetObjectV2ResponseMPayload
- EzmaxApi::Object::BillingentityinternalListElement
- EzmaxApi::Object::BillingentityinternalRequest
- EzmaxApi::Object::BillingentityinternalRequestCompound
- EzmaxApi::Object::BillingentityinternalResponse
- EzmaxApi::Object::BillingentityinternalResponseCompound
- EzmaxApi::Object::BillingentityinternalproductRequest
- EzmaxApi::Object::BillingentityinternalproductRequestCompound
- EzmaxApi::Object::BillingentityinternalproductResponse
- EzmaxApi::Object::BillingentityinternalproductResponseCompound
- EzmaxApi::Object::BrandingAutocompleteElementResponse
- EzmaxApi::Object::BrandingCreateObjectV1Request
- EzmaxApi::Object::BrandingCreateObjectV1Response
- EzmaxApi::Object::BrandingCreateObjectV1ResponseMPayload
- EzmaxApi::Object::BrandingEditObjectV1Request
- EzmaxApi::Object::BrandingEditObjectV1Response
- EzmaxApi::Object::BrandingGetAutocompleteV2Response
- EzmaxApi::Object::BrandingGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::BrandingGetListV1Response
- EzmaxApi::Object::BrandingGetListV1ResponseMPayload
- EzmaxApi::Object::BrandingGetObjectV2Response
- EzmaxApi::Object::BrandingGetObjectV2ResponseMPayload
- EzmaxApi::Object::BrandingListElement
- EzmaxApi::Object::BrandingRequest
- EzmaxApi::Object::BrandingRequestCompound
- EzmaxApi::Object::BrandingResponse
- EzmaxApi::Object::BrandingResponseCompound
- EzmaxApi::Object::BuyercontractGetCommunicationListV1Response
- EzmaxApi::Object::BuyercontractGetCommunicationListV1ResponseMPayload
- EzmaxApi::Object::ClonehistoryGetListV1Response
- EzmaxApi::Object::ClonehistoryGetListV1ResponseMPayload
- EzmaxApi::Object::ClonehistoryListElement
- EzmaxApi::Object::CommonAudit
- EzmaxApi::Object::CommonAuditdetail
- EzmaxApi::Object::CommonFile
- EzmaxApi::Object::CommonGetListV1ResponseMPayload
- EzmaxApi::Object::CommonGetReportV1Response
- EzmaxApi::Object::CommonGetReportV1ResponseMPayload
- EzmaxApi::Object::CommonReport
- EzmaxApi::Object::CommonReportcell
- EzmaxApi::Object::CommonReportcellstyle
- EzmaxApi::Object::CommonReportcolumn
- EzmaxApi::Object::CommonReportgroup
- EzmaxApi::Object::CommonReportrow
- EzmaxApi::Object::CommonReportsection
- EzmaxApi::Object::CommonReportsubsection
- EzmaxApi::Object::CommonReportsubsectionpart
- EzmaxApi::Object::CommonResponse
- EzmaxApi::Object::CommonResponseError
- EzmaxApi::Object::CommonResponseErrorEzsignformValidation
- EzmaxApi::Object::CommonResponseErrorSTemporaryFileUrl
- EzmaxApi::Object::CommonResponseErrorTooManyRequests
- EzmaxApi::Object::CommonResponseFilter
- EzmaxApi::Object::CommonResponseGetList
- EzmaxApi::Object::CommonResponseObjDebug
- EzmaxApi::Object::CommonResponseObjDebugPayload
- EzmaxApi::Object::CommonResponseObjDebugPayloadGetList
- EzmaxApi::Object::CommonResponseObjSQLQuery
- EzmaxApi::Object::CommonResponseRedirectSSecretquestionTextX
- EzmaxApi::Object::CommonResponseWarning
- EzmaxApi::Object::CommonWebhook
- EzmaxApi::Object::CommunicationCreateObjectV1ResponseMPayload
- EzmaxApi::Object::CommunicationRequest
- EzmaxApi::Object::CommunicationRequestCompound
- EzmaxApi::Object::CommunicationSendV1Request
- EzmaxApi::Object::CommunicationSendV1Response
- EzmaxApi::Object::CommunicationattachmentRequest
- EzmaxApi::Object::CommunicationattachmentRequestCompound
- EzmaxApi::Object::CommunicationexternalrecipientRequest
- EzmaxApi::Object::CommunicationexternalrecipientRequestCompound
- EzmaxApi::Object::CommunicationrecipientRequest
- EzmaxApi::Object::CommunicationrecipientRequestCompound
- EzmaxApi::Object::CommunicationreferenceRequest
- EzmaxApi::Object::CommunicationreferenceRequestCompound
- EzmaxApi::Object::CompanyAutocompleteElementResponse
- EzmaxApi::Object::CompanyGetAutocompleteV2Response
- EzmaxApi::Object::CompanyGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::ComputedECommunicationDirection
- EzmaxApi::Object::ComputedEEzsigndocumentSteptype
- EzmaxApi::Object::ContactRequest
- EzmaxApi::Object::ContactRequestCompound
- EzmaxApi::Object::ContactinformationsRequest
- EzmaxApi::Object::ContactinformationsRequestCompound
- EzmaxApi::Object::CorsCreateObjectV1Request
- EzmaxApi::Object::CorsCreateObjectV1Response
- EzmaxApi::Object::CorsCreateObjectV1ResponseMPayload
- EzmaxApi::Object::CorsDeleteObjectV1Response
- EzmaxApi::Object::CorsEditObjectV1Request
- EzmaxApi::Object::CorsEditObjectV1Response
- EzmaxApi::Object::CorsGetObjectV2Response
- EzmaxApi::Object::CorsGetObjectV2ResponseMPayload
- EzmaxApi::Object::CorsRequest
- EzmaxApi::Object::CorsRequestCompound
- EzmaxApi::Object::CorsResponse
- EzmaxApi::Object::CorsResponseCompound
- EzmaxApi::Object::CountryAutocompleteElementResponse
- EzmaxApi::Object::CountryGetAutocompleteV2Response
- EzmaxApi::Object::CountryGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::CreditcardclientAutocompleteElementResponse
- EzmaxApi::Object::CreditcardclientCreateObjectV1Request
- EzmaxApi::Object::CreditcardclientCreateObjectV1Response
- EzmaxApi::Object::CreditcardclientCreateObjectV1ResponseMPayload
- EzmaxApi::Object::CreditcardclientDeleteObjectV1Response
- EzmaxApi::Object::CreditcardclientEditObjectV1Request
- EzmaxApi::Object::CreditcardclientEditObjectV1Response
- EzmaxApi::Object::CreditcardclientGetAutocompleteV2Response
- EzmaxApi::Object::CreditcardclientGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::CreditcardclientGetListV1Response
- EzmaxApi::Object::CreditcardclientGetListV1ResponseMPayload
- EzmaxApi::Object::CreditcardclientGetObjectV2Response
- EzmaxApi::Object::CreditcardclientGetObjectV2ResponseMPayload
- EzmaxApi::Object::CreditcardclientListElement
- EzmaxApi::Object::CreditcardclientRequest
- EzmaxApi::Object::CreditcardclientRequestCompound
- EzmaxApi::Object::CreditcardclientResponse
- EzmaxApi::Object::CreditcardclientResponseCompound
- EzmaxApi::Object::CreditcarddetailRequest
- EzmaxApi::Object::CreditcarddetailResponse
- EzmaxApi::Object::CreditcarddetailResponseCompound
- EzmaxApi::Object::CreditcardtypeAutocompleteElementResponse
- EzmaxApi::Object::CreditcardtypeGetAutocompleteV2Response
- EzmaxApi::Object::CreditcardtypeGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::CustomAttachmentResponse
- EzmaxApi::Object::CustomAttachmentdocumenttypeResponse
- EzmaxApi::Object::CustomCommunicationListElementResponse
- EzmaxApi::Object::CustomCommunicationattachmentRequest
- EzmaxApi::Object::CustomCommunicationrecipientsgroupResponse
- EzmaxApi::Object::CustomCommunicationrecipientsrecipientResponse
- EzmaxApi::Object::CustomCommunicationsenderRequest
- EzmaxApi::Object::CustomCommunicationsenderResponse
- EzmaxApi::Object::CustomContactNameResponse
- EzmaxApi::Object::CustomCreateEzsignelementsPositionedByWordRequest
- EzmaxApi::Object::CustomCreditcardtransactionResponse
- EzmaxApi::Object::CustomDiscussionconfigurationResponse
- EzmaxApi::Object::CustomDropdownElementRequest
- EzmaxApi::Object::CustomDropdownElementRequestCompound
- EzmaxApi::Object::CustomDropdownElementResponse
- EzmaxApi::Object::CustomDropdownElementResponseCompound
- EzmaxApi::Object::CustomEzmaxinvoicingEzsigndocumentResponse
- EzmaxApi::Object::CustomEzmaxinvoicingEzsignfolderResponse
- EzmaxApi::Object::CustomEzmaxpricingResponse
- EzmaxApi::Object::CustomEzsigndocumentEzsignsignaturesAutomaticResponse
- EzmaxApi::Object::CustomEzsignfolderEzsignsignaturesAutomaticResponse
- EzmaxApi::Object::CustomEzsignfoldersignerassociationActionableElementResponse
- EzmaxApi::Object::CustomEzsignfoldersignerassociationstatusResponse
- EzmaxApi::Object::CustomEzsignfoldertransmissionResponse
- EzmaxApi::Object::CustomEzsignfoldertransmissionSignerResponse
- EzmaxApi::Object::CustomEzsignfoldertypeResponse
- EzmaxApi::Object::CustomEzsignformfieldRequest
- EzmaxApi::Object::CustomEzsignformfielderrorResponse
- EzmaxApi::Object::CustomEzsignformfielderrortestResponse
- EzmaxApi::Object::CustomEzsignformfieldgroupCreateEzsignelementsPositionedByWordRequest
- EzmaxApi::Object::CustomEzsignformfieldgroupRequest
- EzmaxApi::Object::CustomEzsignsignatureCreateEzsignelementsPositionedByWordRequest
- EzmaxApi::Object::CustomEzsignsignatureEzsignsignaturesAutomaticResponse
- EzmaxApi::Object::CustomEzsignsignaturestatusResponse
- EzmaxApi::Object::CustomFormDataDocumentResponse
- EzmaxApi::Object::CustomFormDataEzsignformfieldResponse
- EzmaxApi::Object::CustomFormDataEzsignformfieldgroupResponse
- EzmaxApi::Object::CustomFormDataSignerResponse
- EzmaxApi::Object::CustomFormsDataFolderResponse
- EzmaxApi::Object::CustomImportEzsigntemplatepackageRelationRequest
- EzmaxApi::Object::CustomNotificationsubsectiongetnotificationtestsResponse
- EzmaxApi::Object::CustomNotificationtestgetnotificationtestsResponse
- EzmaxApi::Object::CustomUserResponse
- EzmaxApi::Object::CustomWebhookResponse
- EzmaxApi::Object::CustomWebhooklogResponse
- EzmaxApi::Object::CustomWordPositionOccurenceResponse
- EzmaxApi::Object::CustomWordPositionWordResponse
- EzmaxApi::Object::DepartmentAutocompleteElementResponse
- EzmaxApi::Object::DepartmentGetAutocompleteV2Response
- EzmaxApi::Object::DepartmentGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::DiscussionCreateObjectV1Request
- EzmaxApi::Object::DiscussionCreateObjectV1Response
- EzmaxApi::Object::DiscussionCreateObjectV1ResponseMPayload
- EzmaxApi::Object::DiscussionDeleteObjectV1Response
- EzmaxApi::Object::DiscussionGetObjectV2Response
- EzmaxApi::Object::DiscussionGetObjectV2ResponseMPayload
- EzmaxApi::Object::DiscussionPatchObjectV1Request
- EzmaxApi::Object::DiscussionPatchObjectV1Response
- EzmaxApi::Object::DiscussionRequest
- EzmaxApi::Object::DiscussionRequestCompound
- EzmaxApi::Object::DiscussionRequestPatch
- EzmaxApi::Object::DiscussionResponse
- EzmaxApi::Object::DiscussionResponseCompound
- EzmaxApi::Object::DiscussionUpdateDiscussionreadstatusV1Request
- EzmaxApi::Object::DiscussionUpdateDiscussionreadstatusV1Response
- EzmaxApi::Object::DiscussionmembershipCreateObjectV1Request
- EzmaxApi::Object::DiscussionmembershipCreateObjectV1Response
- EzmaxApi::Object::DiscussionmembershipCreateObjectV1ResponseMPayload
- EzmaxApi::Object::DiscussionmembershipDeleteObjectV1Response
- EzmaxApi::Object::DiscussionmembershipRequest
- EzmaxApi::Object::DiscussionmembershipRequestCompound
- EzmaxApi::Object::DiscussionmembershipResponse
- EzmaxApi::Object::DiscussionmembershipResponseCompound
- EzmaxApi::Object::DiscussionmessageCreateObjectV1Request
- EzmaxApi::Object::DiscussionmessageCreateObjectV1Response
- EzmaxApi::Object::DiscussionmessageCreateObjectV1ResponseMPayload
- EzmaxApi::Object::DiscussionmessageDeleteObjectV1Response
- EzmaxApi::Object::DiscussionmessagePatchObjectV1Request
- EzmaxApi::Object::DiscussionmessagePatchObjectV1Response
- EzmaxApi::Object::DiscussionmessageRequest
- EzmaxApi::Object::DiscussionmessageRequestCompound
- EzmaxApi::Object::DiscussionmessageRequestPatch
- EzmaxApi::Object::DiscussionmessageResponse
- EzmaxApi::Object::DiscussionmessageResponseCompound
- EzmaxApi::Object::ElectronicfundstransferGetCommunicationListV1Response
- EzmaxApi::Object::ElectronicfundstransferGetCommunicationListV1ResponseMPayload
- EzmaxApi::Object::EmailRequest
- EzmaxApi::Object::EmailRequestCompound
- EzmaxApi::Object::EmailResponse
- EzmaxApi::Object::EmailResponseCompound
- EzmaxApi::Object::EmailtypeAutocompleteElementResponse
- EzmaxApi::Object::EmailtypeGetAutocompleteV2Response
- EzmaxApi::Object::EmailtypeGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::EnumFontunderline
- EzmaxApi::Object::EnumFontweight
- EzmaxApi::Object::EnumHorizontalalignment
- EzmaxApi::Object::EnumTextvalidation
- EzmaxApi::Object::EnumVerticalalignment
- EzmaxApi::Object::EzmaxinvoicingAutocompleteElementResponse
- EzmaxApi::Object::EzmaxinvoicingGetAutocompleteV2Response
- EzmaxApi::Object::EzmaxinvoicingGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::EzmaxinvoicingGetObjectV2Response
- EzmaxApi::Object::EzmaxinvoicingGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzmaxinvoicingGetProvisionalV1Response
- EzmaxApi::Object::EzmaxinvoicingGetProvisionalV1ResponseMPayload
- EzmaxApi::Object::EzmaxinvoicingResponse
- EzmaxApi::Object::EzmaxinvoicingResponseCompound
- EzmaxApi::Object::EzmaxinvoicingagentResponse
- EzmaxApi::Object::EzmaxinvoicingagentResponseCompound
- EzmaxApi::Object::EzmaxinvoicingcommissionResponse
- EzmaxApi::Object::EzmaxinvoicingcommissionResponseCompound
- EzmaxApi::Object::EzmaxinvoicingcontractResponse
- EzmaxApi::Object::EzmaxinvoicingcontractResponseCompound
- EzmaxApi::Object::EzmaxinvoicingsummaryexternalResponse
- EzmaxApi::Object::EzmaxinvoicingsummaryexternalResponseCompound
- EzmaxApi::Object::EzmaxinvoicingsummaryexternaldetailResponse
- EzmaxApi::Object::EzmaxinvoicingsummaryexternaldetailResponseCompound
- EzmaxApi::Object::EzmaxinvoicingsummaryglobalResponse
- EzmaxApi::Object::EzmaxinvoicingsummaryglobalResponseCompound
- EzmaxApi::Object::EzmaxinvoicingsummaryinternalResponse
- EzmaxApi::Object::EzmaxinvoicingsummaryinternalResponseCompound
- EzmaxApi::Object::EzmaxinvoicingsummaryinternaldetailResponse
- EzmaxApi::Object::EzmaxinvoicingsummaryinternaldetailResponseCompound
- EzmaxApi::Object::EzmaxinvoicinguserResponse
- EzmaxApi::Object::EzmaxinvoicinguserResponseCompound
- EzmaxApi::Object::EzmaxproductAutocompleteElementResponse
- EzmaxApi::Object::EzmaxproductGetAutocompleteV2Response
- EzmaxApi::Object::EzmaxproductGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::EzsignSuggestSignersV1Response
- EzmaxApi::Object::EzsignSuggestSignersV1ResponseMPayload
- EzmaxApi::Object::EzsignSuggestTemplatesV1Response
- EzmaxApi::Object::EzsignSuggestTemplatesV1ResponseMPayload
- EzmaxApi::Object::EzsignannotationResponse
- EzmaxApi::Object::EzsignannotationResponseCompound
- EzmaxApi::Object::EzsignbulksendCreateEzsignbulksendtransmissionV1Request
- EzmaxApi::Object::EzsignbulksendCreateEzsignbulksendtransmissionV1Response
- EzmaxApi::Object::EzsignbulksendCreateEzsignbulksendtransmissionV1ResponseMPayload
- EzmaxApi::Object::EzsignbulksendCreateObjectV1Request
- EzmaxApi::Object::EzsignbulksendCreateObjectV1Response
- EzmaxApi::Object::EzsignbulksendCreateObjectV1ResponseMPayload
- EzmaxApi::Object::EzsignbulksendDeleteObjectV1Response
- EzmaxApi::Object::EzsignbulksendEditObjectV1Request
- EzmaxApi::Object::EzsignbulksendEditObjectV1Response
- EzmaxApi::Object::EzsignbulksendGetEzsignbulksendtransmissionsV1Response
- EzmaxApi::Object::EzsignbulksendGetEzsignbulksendtransmissionsV1ResponseMPayload
- EzmaxApi::Object::EzsignbulksendGetEzsignsignaturesAutomaticV1Response
- EzmaxApi::Object::EzsignbulksendGetEzsignsignaturesAutomaticV1ResponseMPayload
- EzmaxApi::Object::EzsignbulksendGetFormsDataV1Response
- EzmaxApi::Object::EzsignbulksendGetFormsDataV1ResponseMPayload
- EzmaxApi::Object::EzsignbulksendGetListV1Response
- EzmaxApi::Object::EzsignbulksendGetListV1ResponseMPayload
- EzmaxApi::Object::EzsignbulksendGetObjectV2Response
- EzmaxApi::Object::EzsignbulksendGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsignbulksendListElement
- EzmaxApi::Object::EzsignbulksendReorderV1Request
- EzmaxApi::Object::EzsignbulksendReorderV1Response
- EzmaxApi::Object::EzsignbulksendRequest
- EzmaxApi::Object::EzsignbulksendRequestCompound
- EzmaxApi::Object::EzsignbulksendResponse
- EzmaxApi::Object::EzsignbulksendResponseCompound
- EzmaxApi::Object::EzsignbulksenddocumentmappingCreateObjectV1Request
- EzmaxApi::Object::EzsignbulksenddocumentmappingCreateObjectV1Response
- EzmaxApi::Object::EzsignbulksenddocumentmappingCreateObjectV1ResponseMPayload
- EzmaxApi::Object::EzsignbulksenddocumentmappingDeleteObjectV1Response
- EzmaxApi::Object::EzsignbulksenddocumentmappingGetObjectV2Response
- EzmaxApi::Object::EzsignbulksenddocumentmappingGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsignbulksenddocumentmappingRequest
- EzmaxApi::Object::EzsignbulksenddocumentmappingRequestCompound
- EzmaxApi::Object::EzsignbulksenddocumentmappingResponse
- EzmaxApi::Object::EzsignbulksenddocumentmappingResponseCompound
- EzmaxApi::Object::EzsignbulksendsignermappingCreateObjectV1Request
- EzmaxApi::Object::EzsignbulksendsignermappingCreateObjectV1Response
- EzmaxApi::Object::EzsignbulksendsignermappingCreateObjectV1ResponseMPayload
- EzmaxApi::Object::EzsignbulksendsignermappingDeleteObjectV1Response
- EzmaxApi::Object::EzsignbulksendsignermappingGetObjectV2Response
- EzmaxApi::Object::EzsignbulksendsignermappingGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsignbulksendsignermappingRequest
- EzmaxApi::Object::EzsignbulksendsignermappingRequestCompound
- EzmaxApi::Object::EzsignbulksendsignermappingResponse
- EzmaxApi::Object::EzsignbulksendsignermappingResponseCompound
- EzmaxApi::Object::EzsignbulksendtransmissionGetEzsignsignaturesAutomaticV1Response
- EzmaxApi::Object::EzsignbulksendtransmissionGetEzsignsignaturesAutomaticV1ResponseMPayload
- EzmaxApi::Object::EzsignbulksendtransmissionGetFormsDataV1Response
- EzmaxApi::Object::EzsignbulksendtransmissionGetFormsDataV1ResponseMPayload
- EzmaxApi::Object::EzsignbulksendtransmissionGetObjectV2Response
- EzmaxApi::Object::EzsignbulksendtransmissionGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsignbulksendtransmissionResponse
- EzmaxApi::Object::EzsignbulksendtransmissionResponseCompound
- EzmaxApi::Object::EzsigndiscussionCreateObjectV1Request
- EzmaxApi::Object::EzsigndiscussionCreateObjectV1Response
- EzmaxApi::Object::EzsigndiscussionCreateObjectV1ResponseMPayload
- EzmaxApi::Object::EzsigndiscussionDeleteObjectV1Response
- EzmaxApi::Object::EzsigndiscussionGetObjectV2Response
- EzmaxApi::Object::EzsigndiscussionGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsigndiscussionRequest
- EzmaxApi::Object::EzsigndiscussionRequestCompound
- EzmaxApi::Object::EzsigndiscussionResponse
- EzmaxApi::Object::EzsigndiscussionResponseCompound
- EzmaxApi::Object::EzsigndocumentApplyEzsigntemplateV1Request
- EzmaxApi::Object::EzsigndocumentApplyEzsigntemplateV1Response
- EzmaxApi::Object::EzsigndocumentApplyEzsigntemplateV2Request
- EzmaxApi::Object::EzsigndocumentApplyEzsigntemplateV2Response
- EzmaxApi::Object::EzsigndocumentApplyEzsigntemplateglobalV1Request
- EzmaxApi::Object::EzsigndocumentApplyEzsigntemplateglobalV1Response
- EzmaxApi::Object::EzsigndocumentCreateEzsignelementsPositionedByWordV1Request
- EzmaxApi::Object::EzsigndocumentCreateEzsignelementsPositionedByWordV1Response
- EzmaxApi::Object::EzsigndocumentCreateEzsignelementsPositionedByWordV1ResponseMPayload
- EzmaxApi::Object::EzsigndocumentCreateObjectV1Request
- EzmaxApi::Object::EzsigndocumentCreateObjectV1Response
- EzmaxApi::Object::EzsigndocumentCreateObjectV1ResponseMPayload
- EzmaxApi::Object::EzsigndocumentCreateObjectV2Request
- EzmaxApi::Object::EzsigndocumentCreateObjectV2Response
- EzmaxApi::Object::EzsigndocumentCreateObjectV2ResponseMPayload
- EzmaxApi::Object::EzsigndocumentDeclineToSignV1Request
- EzmaxApi::Object::EzsigndocumentDeclineToSignV1Response
- EzmaxApi::Object::EzsigndocumentDeleteObjectV1Response
- EzmaxApi::Object::EzsigndocumentEditEzsignformfieldgroupsV1Request
- EzmaxApi::Object::EzsigndocumentEditEzsignformfieldgroupsV1Response
- EzmaxApi::Object::EzsigndocumentEditEzsignformfieldgroupsV1ResponseMPayload
- EzmaxApi::Object::EzsigndocumentEditEzsignsignaturesV1Request
- EzmaxApi::Object::EzsigndocumentEditEzsignsignaturesV1Response
- EzmaxApi::Object::EzsigndocumentEditEzsignsignaturesV1ResponseMPayload
- EzmaxApi::Object::EzsigndocumentEndPrematurelyV1Response
- EzmaxApi::Object::EzsigndocumentFlattenV1Response
- EzmaxApi::Object::EzsigndocumentGetActionableElementsV1Response
- EzmaxApi::Object::EzsigndocumentGetActionableElementsV1ResponseMPayload
- EzmaxApi::Object::EzsigndocumentGetAttachmentsV1Response
- EzmaxApi::Object::EzsigndocumentGetAttachmentsV1ResponseMPayload
- EzmaxApi::Object::EzsigndocumentGetCompletedElementsV1Response
- EzmaxApi::Object::EzsigndocumentGetCompletedElementsV1ResponseMPayload
- EzmaxApi::Object::EzsigndocumentGetDownloadUrlV1Response
- EzmaxApi::Object::EzsigndocumentGetDownloadUrlV1ResponseMPayload
- EzmaxApi::Object::EzsigndocumentGetEzsignannotationsV1Response
- EzmaxApi::Object::EzsigndocumentGetEzsignannotationsV1ResponseMPayload
- EzmaxApi::Object::EzsigndocumentGetEzsigndiscussionsV1Response
- EzmaxApi::Object::EzsigndocumentGetEzsigndiscussionsV1ResponseMPayload
- EzmaxApi::Object::EzsigndocumentGetEzsignformfieldgroupsV1Response
- EzmaxApi::Object::EzsigndocumentGetEzsignformfieldgroupsV1ResponseMPayload
- EzmaxApi::Object::EzsigndocumentGetEzsignpagesV1Response
- EzmaxApi::Object::EzsigndocumentGetEzsignpagesV1ResponseMPayload
- EzmaxApi::Object::EzsigndocumentGetEzsignsignaturesAutomaticV1Response
- EzmaxApi::Object::EzsigndocumentGetEzsignsignaturesAutomaticV1ResponseMPayload
- EzmaxApi::Object::EzsigndocumentGetEzsignsignaturesV1Response
- EzmaxApi::Object::EzsigndocumentGetEzsignsignaturesV1ResponseMPayload
- EzmaxApi::Object::EzsigndocumentGetFormDataV1Response
- EzmaxApi::Object::EzsigndocumentGetFormDataV1ResponseMPayload
- EzmaxApi::Object::EzsigndocumentGetObjectV1Response
- EzmaxApi::Object::EzsigndocumentGetObjectV1ResponseMPayload
- EzmaxApi::Object::EzsigndocumentGetObjectV2Response
- EzmaxApi::Object::EzsigndocumentGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsigndocumentGetTemporaryProofV1Response
- EzmaxApi::Object::EzsigndocumentGetTemporaryProofV1ResponseMPayload
- EzmaxApi::Object::EzsigndocumentGetWordsPositionsV1Request
- EzmaxApi::Object::EzsigndocumentGetWordsPositionsV1Response
- EzmaxApi::Object::EzsigndocumentPatchObjectV1Request
- EzmaxApi::Object::EzsigndocumentPatchObjectV1Response
- EzmaxApi::Object::EzsigndocumentRequest
- EzmaxApi::Object::EzsigndocumentRequestCompound
- EzmaxApi::Object::EzsigndocumentRequestPatch
- EzmaxApi::Object::EzsigndocumentResponse
- EzmaxApi::Object::EzsigndocumentResponseCompound
- EzmaxApi::Object::EzsigndocumentSubmitEzsignformV1Request
- EzmaxApi::Object::EzsigndocumentSubmitEzsignformV1Response
- EzmaxApi::Object::EzsigndocumentUnsendV1Response
- EzmaxApi::Object::EzsigndocumentlogResponse
- EzmaxApi::Object::EzsigndocumentlogResponseCompound
- EzmaxApi::Object::EzsignelementdependencyRequest
- EzmaxApi::Object::EzsignelementdependencyRequestCompound
- EzmaxApi::Object::EzsignelementdependencyResponse
- EzmaxApi::Object::EzsignelementdependencyResponseCompound
- EzmaxApi::Object::EzsignfolderArchiveV1Response
- EzmaxApi::Object::EzsignfolderBatchDownloadV1Request
- EzmaxApi::Object::EzsignfolderCreateObjectV1Request
- EzmaxApi::Object::EzsignfolderCreateObjectV1Response
- EzmaxApi::Object::EzsignfolderCreateObjectV1ResponseMPayload
- EzmaxApi::Object::EzsignfolderCreateObjectV2Request
- EzmaxApi::Object::EzsignfolderCreateObjectV2Response
- EzmaxApi::Object::EzsignfolderCreateObjectV2ResponseMPayload
- EzmaxApi::Object::EzsignfolderDeleteObjectV1Response
- EzmaxApi::Object::EzsignfolderDisposeEzsignfoldersV1Request
- EzmaxApi::Object::EzsignfolderDisposeEzsignfoldersV1Response
- EzmaxApi::Object::EzsignfolderDisposeV1Response
- EzmaxApi::Object::EzsignfolderEditObjectV1Request
- EzmaxApi::Object::EzsignfolderEditObjectV1Response
- EzmaxApi::Object::EzsignfolderEndPrematurelyV1Response
- EzmaxApi::Object::EzsignfolderGetActionableElementsV1Response
- EzmaxApi::Object::EzsignfolderGetActionableElementsV1ResponseMPayload
- EzmaxApi::Object::EzsignfolderGetAttachmentCountV1Response
- EzmaxApi::Object::EzsignfolderGetAttachmentCountV1ResponseMPayload
- EzmaxApi::Object::EzsignfolderGetAttachmentsV1Response
- EzmaxApi::Object::EzsignfolderGetAttachmentsV1ResponseMPayload
- EzmaxApi::Object::EzsignfolderGetCommunicationCountV1Response
- EzmaxApi::Object::EzsignfolderGetCommunicationCountV1ResponseMPayload
- EzmaxApi::Object::EzsignfolderGetCommunicationListV1Response
- EzmaxApi::Object::EzsignfolderGetCommunicationListV1ResponseMPayload
- EzmaxApi::Object::EzsignfolderGetCommunicationrecipientsV1Response
- EzmaxApi::Object::EzsignfolderGetCommunicationrecipientsV1ResponseMPayload
- EzmaxApi::Object::EzsignfolderGetCommunicationsendersV1Response
- EzmaxApi::Object::EzsignfolderGetCommunicationsendersV1ResponseMPayload
- EzmaxApi::Object::EzsignfolderGetEzsigndocumentsV1Response
- EzmaxApi::Object::EzsignfolderGetEzsigndocumentsV1ResponseMPayload
- EzmaxApi::Object::EzsignfolderGetEzsignfoldersignerassociationsV1Response
- EzmaxApi::Object::EzsignfolderGetEzsignfoldersignerassociationsV1ResponseMPayload
- EzmaxApi::Object::EzsignfolderGetEzsignsignaturesAutomaticV1Response
- EzmaxApi::Object::EzsignfolderGetEzsignsignaturesAutomaticV1ResponseMPayload
- EzmaxApi::Object::EzsignfolderGetFormsDataV1Response
- EzmaxApi::Object::EzsignfolderGetFormsDataV1ResponseMPayload
- EzmaxApi::Object::EzsignfolderGetListV1Response
- EzmaxApi::Object::EzsignfolderGetListV1ResponseMPayload
- EzmaxApi::Object::EzsignfolderGetObjectV1Response
- EzmaxApi::Object::EzsignfolderGetObjectV1ResponseMPayload
- EzmaxApi::Object::EzsignfolderGetObjectV2Response
- EzmaxApi::Object::EzsignfolderGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsignfolderImportEzsignfoldersignerassociationsV1Request
- EzmaxApi::Object::EzsignfolderImportEzsignfoldersignerassociationsV1Response
- EzmaxApi::Object::EzsignfolderImportEzsignfoldersignerassociationsV1ResponseMPayload
- EzmaxApi::Object::EzsignfolderImportEzsigntemplatepackageV1Request
- EzmaxApi::Object::EzsignfolderImportEzsigntemplatepackageV1Response
- EzmaxApi::Object::EzsignfolderImportEzsigntemplatepackageV1ResponseMPayload
- EzmaxApi::Object::EzsignfolderListElement
- EzmaxApi::Object::EzsignfolderReorderV1Request
- EzmaxApi::Object::EzsignfolderReorderV1Response
- EzmaxApi::Object::EzsignfolderRequest
- EzmaxApi::Object::EzsignfolderRequestCompound
- EzmaxApi::Object::EzsignfolderResponse
- EzmaxApi::Object::EzsignfolderResponseCompound
- EzmaxApi::Object::EzsignfolderSendV1Request
- EzmaxApi::Object::EzsignfolderSendV1Response
- EzmaxApi::Object::EzsignfolderSendV3Request
- EzmaxApi::Object::EzsignfolderSendV3Response
- EzmaxApi::Object::EzsignfolderUnsendV1Response
- EzmaxApi::Object::EzsignfoldersignerassociationCreateEmbeddedUrlV1Request
- EzmaxApi::Object::EzsignfoldersignerassociationCreateEmbeddedUrlV1Response
- EzmaxApi::Object::EzsignfoldersignerassociationCreateEmbeddedUrlV1ResponseMPayload
- EzmaxApi::Object::EzsignfoldersignerassociationCreateObjectV1Request
- EzmaxApi::Object::EzsignfoldersignerassociationCreateObjectV1Response
- EzmaxApi::Object::EzsignfoldersignerassociationCreateObjectV1ResponseMPayload
- EzmaxApi::Object::EzsignfoldersignerassociationCreateObjectV2Request
- EzmaxApi::Object::EzsignfoldersignerassociationCreateObjectV2Response
- EzmaxApi::Object::EzsignfoldersignerassociationCreateObjectV2ResponseMPayload
- EzmaxApi::Object::EzsignfoldersignerassociationDeleteObjectV1Response
- EzmaxApi::Object::EzsignfoldersignerassociationEditObjectV1Request
- EzmaxApi::Object::EzsignfoldersignerassociationEditObjectV1Response
- EzmaxApi::Object::EzsignfoldersignerassociationForceDisconnectV1Response
- EzmaxApi::Object::EzsignfoldersignerassociationGetInPersonLoginUrlV1Response
- EzmaxApi::Object::EzsignfoldersignerassociationGetInPersonLoginUrlV1ResponseMPayload
- EzmaxApi::Object::EzsignfoldersignerassociationGetObjectV1Response
- EzmaxApi::Object::EzsignfoldersignerassociationGetObjectV1ResponseMPayload
- EzmaxApi::Object::EzsignfoldersignerassociationGetObjectV2Response
- EzmaxApi::Object::EzsignfoldersignerassociationGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsignfoldersignerassociationPatchObjectV1Request
- EzmaxApi::Object::EzsignfoldersignerassociationPatchObjectV1Response
- EzmaxApi::Object::EzsignfoldersignerassociationRequest
- EzmaxApi::Object::EzsignfoldersignerassociationRequestCompound
- EzmaxApi::Object::EzsignfoldersignerassociationRequestPatch
- EzmaxApi::Object::EzsignfoldersignerassociationResponse
- EzmaxApi::Object::EzsignfoldersignerassociationResponseCompound
- EzmaxApi::Object::EzsignfoldersignerassociationResponseCompoundUser
- EzmaxApi::Object::EzsignfoldertypeAutocompleteElementResponse
- EzmaxApi::Object::EzsignfoldertypeCreateObjectV2Request
- EzmaxApi::Object::EzsignfoldertypeCreateObjectV2Response
- EzmaxApi::Object::EzsignfoldertypeCreateObjectV2ResponseMPayload
- EzmaxApi::Object::EzsignfoldertypeEditObjectV1Request
- EzmaxApi::Object::EzsignfoldertypeEditObjectV1Response
- EzmaxApi::Object::EzsignfoldertypeEditObjectV2Request
- EzmaxApi::Object::EzsignfoldertypeEditObjectV2Response
- EzmaxApi::Object::EzsignfoldertypeGetAutocompleteV2Response
- EzmaxApi::Object::EzsignfoldertypeGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::EzsignfoldertypeGetListV1Response
- EzmaxApi::Object::EzsignfoldertypeGetListV1ResponseMPayload
- EzmaxApi::Object::EzsignfoldertypeGetObjectV2Response
- EzmaxApi::Object::EzsignfoldertypeGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsignfoldertypeGetObjectV3Response
- EzmaxApi::Object::EzsignfoldertypeGetObjectV3ResponseMPayload
- EzmaxApi::Object::EzsignfoldertypeListElement
- EzmaxApi::Object::EzsignfoldertypeRequest
- EzmaxApi::Object::EzsignfoldertypeRequestCompound
- EzmaxApi::Object::EzsignfoldertypeRequestCompoundV2
- EzmaxApi::Object::EzsignfoldertypeRequestV2
- EzmaxApi::Object::EzsignfoldertypeResponse
- EzmaxApi::Object::EzsignfoldertypeResponseCompound
- EzmaxApi::Object::EzsignfoldertypeResponseCompoundV3
- EzmaxApi::Object::EzsignfoldertypeResponseV3
- EzmaxApi::Object::EzsignformfieldRequest
- EzmaxApi::Object::EzsignformfieldRequestCompound
- EzmaxApi::Object::EzsignformfieldResponse
- EzmaxApi::Object::EzsignformfieldResponseCompound
- EzmaxApi::Object::EzsignformfieldgroupCreateObjectV1Request
- EzmaxApi::Object::EzsignformfieldgroupCreateObjectV1Response
- EzmaxApi::Object::EzsignformfieldgroupCreateObjectV1ResponseMPayload
- EzmaxApi::Object::EzsignformfieldgroupDeleteObjectV1Response
- EzmaxApi::Object::EzsignformfieldgroupEditObjectV1Request
- EzmaxApi::Object::EzsignformfieldgroupEditObjectV1Response
- EzmaxApi::Object::EzsignformfieldgroupGetObjectV2Response
- EzmaxApi::Object::EzsignformfieldgroupGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsignformfieldgroupRequest
- EzmaxApi::Object::EzsignformfieldgroupRequestCompound
- EzmaxApi::Object::EzsignformfieldgroupResponse
- EzmaxApi::Object::EzsignformfieldgroupResponseCompound
- EzmaxApi::Object::EzsignformfieldgroupsignerRequest
- EzmaxApi::Object::EzsignformfieldgroupsignerRequestCompound
- EzmaxApi::Object::EzsignformfieldgroupsignerResponse
- EzmaxApi::Object::EzsignformfieldgroupsignerResponseCompound
- EzmaxApi::Object::EzsignpageConsultV1Response
- EzmaxApi::Object::EzsignpageResponse
- EzmaxApi::Object::EzsignpageResponseCompound
- EzmaxApi::Object::EzsignsignatureCreateObjectV1Request
- EzmaxApi::Object::EzsignsignatureCreateObjectV1Response
- EzmaxApi::Object::EzsignsignatureCreateObjectV1ResponseMPayload
- EzmaxApi::Object::EzsignsignatureCreateObjectV2Request
- EzmaxApi::Object::EzsignsignatureCreateObjectV2Response
- EzmaxApi::Object::EzsignsignatureCreateObjectV2ResponseMPayload
- EzmaxApi::Object::EzsignsignatureDeleteObjectV1Response
- EzmaxApi::Object::EzsignsignatureEditObjectV1Request
- EzmaxApi::Object::EzsignsignatureEditObjectV1Response
- EzmaxApi::Object::EzsignsignatureGetEzsignsignatureattachmentV1Response
- EzmaxApi::Object::EzsignsignatureGetEzsignsignatureattachmentV1ResponseMPayload
- EzmaxApi::Object::EzsignsignatureGetEzsignsignaturesAutomaticV1Response
- EzmaxApi::Object::EzsignsignatureGetEzsignsignaturesAutomaticV1ResponseMPayload
- EzmaxApi::Object::EzsignsignatureGetObjectV2Response
- EzmaxApi::Object::EzsignsignatureGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsignsignatureRequest
- EzmaxApi::Object::EzsignsignatureRequestCompound
- EzmaxApi::Object::EzsignsignatureResponse
- EzmaxApi::Object::EzsignsignatureResponseCompound
- EzmaxApi::Object::EzsignsignatureSignV1Request
- EzmaxApi::Object::EzsignsignatureSignV1Response
- EzmaxApi::Object::EzsignsignatureattachmentResponse
- EzmaxApi::Object::EzsignsignaturecustomdateRequest
- EzmaxApi::Object::EzsignsignaturecustomdateRequestCompound
- EzmaxApi::Object::EzsignsignaturecustomdateResponse
- EzmaxApi::Object::EzsignsignaturecustomdateResponseCompound
- EzmaxApi::Object::EzsignsignerRequest
- EzmaxApi::Object::EzsignsignerRequestCompound
- EzmaxApi::Object::EzsignsignerRequestCompoundContact
- EzmaxApi::Object::EzsignsignerResponse
- EzmaxApi::Object::EzsignsignerResponseCompound
- EzmaxApi::Object::EzsignsignerResponseCompoundContact
- EzmaxApi::Object::EzsignsignergroupCreateObjectV1Request
- EzmaxApi::Object::EzsignsignergroupCreateObjectV1Response
- EzmaxApi::Object::EzsignsignergroupCreateObjectV1ResponseMPayload
- EzmaxApi::Object::EzsignsignergroupDeleteObjectV1Response
- EzmaxApi::Object::EzsignsignergroupEditEzsignsignergroupmembershipsV1Request
- EzmaxApi::Object::EzsignsignergroupEditEzsignsignergroupmembershipsV1Response
- EzmaxApi::Object::EzsignsignergroupEditEzsignsignergroupmembershipsV1ResponseMPayload
- EzmaxApi::Object::EzsignsignergroupEditObjectV1Request
- EzmaxApi::Object::EzsignsignergroupEditObjectV1Response
- EzmaxApi::Object::EzsignsignergroupGetEzsignsignergroupmembershipsV1Response
- EzmaxApi::Object::EzsignsignergroupGetEzsignsignergroupmembershipsV1ResponseMPayload
- EzmaxApi::Object::EzsignsignergroupGetObjectV2Response
- EzmaxApi::Object::EzsignsignergroupGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsignsignergroupRequest
- EzmaxApi::Object::EzsignsignergroupRequestCompound
- EzmaxApi::Object::EzsignsignergroupResponse
- EzmaxApi::Object::EzsignsignergroupResponseCompound
- EzmaxApi::Object::EzsignsignergroupmembershipCreateObjectV1Request
- EzmaxApi::Object::EzsignsignergroupmembershipCreateObjectV1Response
- EzmaxApi::Object::EzsignsignergroupmembershipCreateObjectV1ResponseMPayload
- EzmaxApi::Object::EzsignsignergroupmembershipDeleteObjectV1Response
- EzmaxApi::Object::EzsignsignergroupmembershipGetObjectV2Response
- EzmaxApi::Object::EzsignsignergroupmembershipGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsignsignergroupmembershipRequest
- EzmaxApi::Object::EzsignsignergroupmembershipRequestCompound
- EzmaxApi::Object::EzsignsignergroupmembershipResponse
- EzmaxApi::Object::EzsignsignergroupmembershipResponseCompound
- EzmaxApi::Object::EzsignsigningreasonAutocompleteElementResponse
- EzmaxApi::Object::EzsignsigningreasonCreateObjectV1Request
- EzmaxApi::Object::EzsignsigningreasonCreateObjectV1Response
- EzmaxApi::Object::EzsignsigningreasonCreateObjectV1ResponseMPayload
- EzmaxApi::Object::EzsignsigningreasonEditObjectV1Request
- EzmaxApi::Object::EzsignsigningreasonEditObjectV1Response
- EzmaxApi::Object::EzsignsigningreasonGetAutocompleteV2Response
- EzmaxApi::Object::EzsignsigningreasonGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::EzsignsigningreasonGetListV1Response
- EzmaxApi::Object::EzsignsigningreasonGetListV1ResponseMPayload
- EzmaxApi::Object::EzsignsigningreasonGetObjectV2Response
- EzmaxApi::Object::EzsignsigningreasonGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsignsigningreasonListElement
- EzmaxApi::Object::EzsignsigningreasonRequest
- EzmaxApi::Object::EzsignsigningreasonRequestCompound
- EzmaxApi::Object::EzsignsigningreasonResponse
- EzmaxApi::Object::EzsignsigningreasonResponseCompound
- EzmaxApi::Object::EzsigntemplateAutocompleteElementResponse
- EzmaxApi::Object::EzsigntemplateCopyV1Request
- EzmaxApi::Object::EzsigntemplateCopyV1Response
- EzmaxApi::Object::EzsigntemplateCopyV1ResponseMPayload
- EzmaxApi::Object::EzsigntemplateCreateObjectV1Request
- EzmaxApi::Object::EzsigntemplateCreateObjectV1Response
- EzmaxApi::Object::EzsigntemplateCreateObjectV1ResponseMPayload
- EzmaxApi::Object::EzsigntemplateCreateObjectV2Request
- EzmaxApi::Object::EzsigntemplateCreateObjectV2Response
- EzmaxApi::Object::EzsigntemplateCreateObjectV2ResponseMPayload
- EzmaxApi::Object::EzsigntemplateDeleteObjectV1Response
- EzmaxApi::Object::EzsigntemplateEditObjectV1Request
- EzmaxApi::Object::EzsigntemplateEditObjectV1Response
- EzmaxApi::Object::EzsigntemplateEditObjectV2Request
- EzmaxApi::Object::EzsigntemplateEditObjectV2Response
- EzmaxApi::Object::EzsigntemplateGetAutocompleteV2Response
- EzmaxApi::Object::EzsigntemplateGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::EzsigntemplateGetListV1Response
- EzmaxApi::Object::EzsigntemplateGetListV1ResponseMPayload
- EzmaxApi::Object::EzsigntemplateGetObjectV1Response
- EzmaxApi::Object::EzsigntemplateGetObjectV1ResponseMPayload
- EzmaxApi::Object::EzsigntemplateGetObjectV2Response
- EzmaxApi::Object::EzsigntemplateGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsigntemplateListElement
- EzmaxApi::Object::EzsigntemplateRequest
- EzmaxApi::Object::EzsigntemplateRequestCompound
- EzmaxApi::Object::EzsigntemplateRequestCompoundV2
- EzmaxApi::Object::EzsigntemplateRequestV2
- EzmaxApi::Object::EzsigntemplateResponse
- EzmaxApi::Object::EzsigntemplateResponseCompound
- EzmaxApi::Object::EzsigntemplatedocumentCreateObjectV1Request
- EzmaxApi::Object::EzsigntemplatedocumentCreateObjectV1Response
- EzmaxApi::Object::EzsigntemplatedocumentCreateObjectV1ResponseMPayload
- EzmaxApi::Object::EzsigntemplatedocumentEditEzsigntemplateformfieldgroupsV1Request
- EzmaxApi::Object::EzsigntemplatedocumentEditEzsigntemplateformfieldgroupsV1Response
- EzmaxApi::Object::EzsigntemplatedocumentEditEzsigntemplateformfieldgroupsV1ResponseMPayload
- EzmaxApi::Object::EzsigntemplatedocumentEditEzsigntemplatesignaturesV1Request
- EzmaxApi::Object::EzsigntemplatedocumentEditEzsigntemplatesignaturesV1Response
- EzmaxApi::Object::EzsigntemplatedocumentEditEzsigntemplatesignaturesV1ResponseMPayload
- EzmaxApi::Object::EzsigntemplatedocumentEditObjectV1Request
- EzmaxApi::Object::EzsigntemplatedocumentEditObjectV1Response
- EzmaxApi::Object::EzsigntemplatedocumentFlattenV1Response
- EzmaxApi::Object::EzsigntemplatedocumentGetEzsigntemplatedocumentpagesV1Response
- EzmaxApi::Object::EzsigntemplatedocumentGetEzsigntemplatedocumentpagesV1ResponseMPayload
- EzmaxApi::Object::EzsigntemplatedocumentGetEzsigntemplateformfieldgroupsV1Response
- EzmaxApi::Object::EzsigntemplatedocumentGetEzsigntemplateformfieldgroupsV1ResponseMPayload
- EzmaxApi::Object::EzsigntemplatedocumentGetEzsigntemplatesignaturesV1Response
- EzmaxApi::Object::EzsigntemplatedocumentGetEzsigntemplatesignaturesV1ResponseMPayload
- EzmaxApi::Object::EzsigntemplatedocumentGetObjectV2Response
- EzmaxApi::Object::EzsigntemplatedocumentGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsigntemplatedocumentGetWordsPositionsV1Request
- EzmaxApi::Object::EzsigntemplatedocumentGetWordsPositionsV1Response
- EzmaxApi::Object::EzsigntemplatedocumentPatchObjectV1Request
- EzmaxApi::Object::EzsigntemplatedocumentPatchObjectV1Response
- EzmaxApi::Object::EzsigntemplatedocumentRequest
- EzmaxApi::Object::EzsigntemplatedocumentRequestCompound
- EzmaxApi::Object::EzsigntemplatedocumentRequestPatch
- EzmaxApi::Object::EzsigntemplatedocumentResponse
- EzmaxApi::Object::EzsigntemplatedocumentResponseCompound
- EzmaxApi::Object::EzsigntemplatedocumentpageResponse
- EzmaxApi::Object::EzsigntemplatedocumentpageResponseCompound
- EzmaxApi::Object::EzsigntemplateelementdependencyRequest
- EzmaxApi::Object::EzsigntemplateelementdependencyRequestCompound
- EzmaxApi::Object::EzsigntemplateelementdependencyResponse
- EzmaxApi::Object::EzsigntemplateelementdependencyResponseCompound
- EzmaxApi::Object::EzsigntemplateformfieldRequest
- EzmaxApi::Object::EzsigntemplateformfieldRequestCompound
- EzmaxApi::Object::EzsigntemplateformfieldResponse
- EzmaxApi::Object::EzsigntemplateformfieldResponseCompound
- EzmaxApi::Object::EzsigntemplateformfieldgroupCreateObjectV1Request
- EzmaxApi::Object::EzsigntemplateformfieldgroupCreateObjectV1Response
- EzmaxApi::Object::EzsigntemplateformfieldgroupCreateObjectV1ResponseMPayload
- EzmaxApi::Object::EzsigntemplateformfieldgroupDeleteObjectV1Response
- EzmaxApi::Object::EzsigntemplateformfieldgroupEditObjectV1Request
- EzmaxApi::Object::EzsigntemplateformfieldgroupEditObjectV1Response
- EzmaxApi::Object::EzsigntemplateformfieldgroupGetObjectV2Response
- EzmaxApi::Object::EzsigntemplateformfieldgroupGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsigntemplateformfieldgroupRequest
- EzmaxApi::Object::EzsigntemplateformfieldgroupRequestCompound
- EzmaxApi::Object::EzsigntemplateformfieldgroupResponse
- EzmaxApi::Object::EzsigntemplateformfieldgroupResponseCompound
- EzmaxApi::Object::EzsigntemplateformfieldgroupsignerRequest
- EzmaxApi::Object::EzsigntemplateformfieldgroupsignerRequestCompound
- EzmaxApi::Object::EzsigntemplateformfieldgroupsignerResponse
- EzmaxApi::Object::EzsigntemplateformfieldgroupsignerResponseCompound
- EzmaxApi::Object::EzsigntemplateglobalAutocompleteElementResponse
- EzmaxApi::Object::EzsigntemplateglobalGetAutocompleteV2Response
- EzmaxApi::Object::EzsigntemplateglobalGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::EzsigntemplateglobalGetObjectV2Response
- EzmaxApi::Object::EzsigntemplateglobalGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsigntemplateglobalResponse
- EzmaxApi::Object::EzsigntemplateglobalResponseCompound
- EzmaxApi::Object::EzsigntemplateglobaldocumentResponse
- EzmaxApi::Object::EzsigntemplateglobalsignerResponse
- EzmaxApi::Object::EzsigntemplateglobalsignerResponseCompound
- EzmaxApi::Object::EzsigntemplatepackageAutocompleteElementResponse
- EzmaxApi::Object::EzsigntemplatepackageCreateObjectV1Request
- EzmaxApi::Object::EzsigntemplatepackageCreateObjectV1Response
- EzmaxApi::Object::EzsigntemplatepackageCreateObjectV1ResponseMPayload
- EzmaxApi::Object::EzsigntemplatepackageDeleteObjectV1Response
- EzmaxApi::Object::EzsigntemplatepackageEditEzsigntemplatepackagesignersV1Request
- EzmaxApi::Object::EzsigntemplatepackageEditEzsigntemplatepackagesignersV1Response
- EzmaxApi::Object::EzsigntemplatepackageEditEzsigntemplatepackagesignersV1ResponseMPayload
- EzmaxApi::Object::EzsigntemplatepackageEditObjectV1Request
- EzmaxApi::Object::EzsigntemplatepackageEditObjectV1Response
- EzmaxApi::Object::EzsigntemplatepackageGetAutocompleteV2Response
- EzmaxApi::Object::EzsigntemplatepackageGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::EzsigntemplatepackageGetListV1Response
- EzmaxApi::Object::EzsigntemplatepackageGetListV1ResponseMPayload
- EzmaxApi::Object::EzsigntemplatepackageGetObjectV2Response
- EzmaxApi::Object::EzsigntemplatepackageGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsigntemplatepackageListElement
- EzmaxApi::Object::EzsigntemplatepackageRequest
- EzmaxApi::Object::EzsigntemplatepackageRequestCompound
- EzmaxApi::Object::EzsigntemplatepackageResponse
- EzmaxApi::Object::EzsigntemplatepackageResponseCompound
- EzmaxApi::Object::EzsigntemplatepackagemembershipCreateObjectV1Request
- EzmaxApi::Object::EzsigntemplatepackagemembershipCreateObjectV1Response
- EzmaxApi::Object::EzsigntemplatepackagemembershipCreateObjectV1ResponseMPayload
- EzmaxApi::Object::EzsigntemplatepackagemembershipDeleteObjectV1Response
- EzmaxApi::Object::EzsigntemplatepackagemembershipGetObjectV2Response
- EzmaxApi::Object::EzsigntemplatepackagemembershipGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsigntemplatepackagemembershipRequest
- EzmaxApi::Object::EzsigntemplatepackagemembershipRequestCompound
- EzmaxApi::Object::EzsigntemplatepackagemembershipResponse
- EzmaxApi::Object::EzsigntemplatepackagemembershipResponseCompound
- EzmaxApi::Object::EzsigntemplatepackagesignerCreateObjectV1Request
- EzmaxApi::Object::EzsigntemplatepackagesignerCreateObjectV1Response
- EzmaxApi::Object::EzsigntemplatepackagesignerCreateObjectV1ResponseMPayload
- EzmaxApi::Object::EzsigntemplatepackagesignerDeleteObjectV1Response
- EzmaxApi::Object::EzsigntemplatepackagesignerDeleteObjectV1ResponseMPayload
- EzmaxApi::Object::EzsigntemplatepackagesignerEditObjectV1Request
- EzmaxApi::Object::EzsigntemplatepackagesignerEditObjectV1Response
- EzmaxApi::Object::EzsigntemplatepackagesignerGetObjectV2Response
- EzmaxApi::Object::EzsigntemplatepackagesignerGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsigntemplatepackagesignerRequest
- EzmaxApi::Object::EzsigntemplatepackagesignerRequestCompound
- EzmaxApi::Object::EzsigntemplatepackagesignerResponse
- EzmaxApi::Object::EzsigntemplatepackagesignerResponseCompound
- EzmaxApi::Object::EzsigntemplatepackagesignermembershipCreateObjectV1Request
- EzmaxApi::Object::EzsigntemplatepackagesignermembershipCreateObjectV1Response
- EzmaxApi::Object::EzsigntemplatepackagesignermembershipCreateObjectV1ResponseMPayload
- EzmaxApi::Object::EzsigntemplatepackagesignermembershipDeleteObjectV1Response
- EzmaxApi::Object::EzsigntemplatepackagesignermembershipDeleteObjectV1ResponseMPayload
- EzmaxApi::Object::EzsigntemplatepackagesignermembershipGetObjectV2Response
- EzmaxApi::Object::EzsigntemplatepackagesignermembershipGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsigntemplatepackagesignermembershipRequest
- EzmaxApi::Object::EzsigntemplatepackagesignermembershipRequestCompound
- EzmaxApi::Object::EzsigntemplatepackagesignermembershipResponse
- EzmaxApi::Object::EzsigntemplatepackagesignermembershipResponseCompound
- EzmaxApi::Object::EzsigntemplatesignatureCreateObjectV1Request
- EzmaxApi::Object::EzsigntemplatesignatureCreateObjectV1Response
- EzmaxApi::Object::EzsigntemplatesignatureCreateObjectV1ResponseMPayload
- EzmaxApi::Object::EzsigntemplatesignatureDeleteObjectV1Response
- EzmaxApi::Object::EzsigntemplatesignatureEditObjectV1Request
- EzmaxApi::Object::EzsigntemplatesignatureEditObjectV1Response
- EzmaxApi::Object::EzsigntemplatesignatureGetObjectV2Response
- EzmaxApi::Object::EzsigntemplatesignatureGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsigntemplatesignatureRequest
- EzmaxApi::Object::EzsigntemplatesignatureRequestCompound
- EzmaxApi::Object::EzsigntemplatesignatureResponse
- EzmaxApi::Object::EzsigntemplatesignatureResponseCompound
- EzmaxApi::Object::EzsigntemplatesignaturecustomdateRequest
- EzmaxApi::Object::EzsigntemplatesignaturecustomdateRequestCompound
- EzmaxApi::Object::EzsigntemplatesignaturecustomdateResponse
- EzmaxApi::Object::EzsigntemplatesignaturecustomdateResponseCompound
- EzmaxApi::Object::EzsigntemplatesignerCreateObjectV1Request
- EzmaxApi::Object::EzsigntemplatesignerCreateObjectV1Response
- EzmaxApi::Object::EzsigntemplatesignerCreateObjectV1ResponseMPayload
- EzmaxApi::Object::EzsigntemplatesignerDeleteObjectV1Response
- EzmaxApi::Object::EzsigntemplatesignerEditObjectV1Request
- EzmaxApi::Object::EzsigntemplatesignerEditObjectV1Response
- EzmaxApi::Object::EzsigntemplatesignerGetObjectV2Response
- EzmaxApi::Object::EzsigntemplatesignerGetObjectV2ResponseMPayload
- EzmaxApi::Object::EzsigntemplatesignerRequest
- EzmaxApi::Object::EzsigntemplatesignerRequestCompound
- EzmaxApi::Object::EzsigntemplatesignerResponse
- EzmaxApi::Object::EzsigntemplatesignerResponseCompound
- EzmaxApi::Object::EzsigntsarequirementAutocompleteElementResponse
- EzmaxApi::Object::EzsigntsarequirementGetAutocompleteV2Response
- EzmaxApi::Object::EzsigntsarequirementGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::FieldEActivesessionOrigin
- EzmaxApi::Object::FieldEActivesessionUsertype
- EzmaxApi::Object::FieldEActivesessionWeekdaystart
- EzmaxApi::Object::FieldEAttachmentDocumenttype
- EzmaxApi::Object::FieldEAttachmentPrivacy
- EzmaxApi::Object::FieldEAttachmentType
- EzmaxApi::Object::FieldEAttachmentVerified
- EzmaxApi::Object::FieldEAttachmentlogType
- EzmaxApi::Object::FieldEBrandingLogo
- EzmaxApi::Object::FieldEBrandingLogointerface
- EzmaxApi::Object::FieldECommunicationImportance
- EzmaxApi::Object::FieldECommunicationType
- EzmaxApi::Object::FieldECommunicationexternalrecipientType
- EzmaxApi::Object::FieldECommunicationrecipientType
- EzmaxApi::Object::FieldECreditcardtypeCodename
- EzmaxApi::Object::FieldEDiscussionmessageStatus
- EzmaxApi::Object::FieldEErrorCode
- EzmaxApi::Object::FieldEEzmaxinvoicingPaymenttype
- EzmaxApi::Object::FieldEEzmaxinvoicingagentVariationezmax
- EzmaxApi::Object::FieldEEzmaxinvoicingagentVariationezsign
- EzmaxApi::Object::FieldEEzmaxinvoicingcontractPaymenttype
- EzmaxApi::Object::FieldEEzmaxinvoicinguserVariationezsign
- EzmaxApi::Object::FieldEEzsignannotationType
- EzmaxApi::Object::FieldEEzsigndocumentStep
- EzmaxApi::Object::FieldEEzsigndocumentlogType
- EzmaxApi::Object::FieldEEzsignelementdependencyOperator
- EzmaxApi::Object::FieldEEzsignelementdependencyValidation
- EzmaxApi::Object::FieldEEzsignfolderCompletion
- EzmaxApi::Object::FieldEEzsignfolderSendreminderfrequency
- EzmaxApi::Object::FieldEEzsignfolderStep
- EzmaxApi::Object::FieldEEzsignfoldertypeCompletion
- EzmaxApi::Object::FieldEEzsignfoldertypeDisposal
- EzmaxApi::Object::FieldEEzsignfoldertypePrivacylevel
- EzmaxApi::Object::FieldEEzsignfoldertypeSendreminderfrequency
- EzmaxApi::Object::FieldEEzsignformfieldDependencyrequirement
- EzmaxApi::Object::FieldEEzsignformfieldgroupSignerrequirement
- EzmaxApi::Object::FieldEEzsignformfieldgroupTooltipposition
- EzmaxApi::Object::FieldEEzsignformfieldgroupType
- EzmaxApi::Object::FieldEEzsignsignatureAttachmentnamesource
- EzmaxApi::Object::FieldEEzsignsignatureDependencyrequirement
- EzmaxApi::Object::FieldEEzsignsignatureFont
- EzmaxApi::Object::FieldEEzsignsignatureTooltipposition
- EzmaxApi::Object::FieldEEzsignsignatureType
- EzmaxApi::Object::FieldEEzsigntemplateType
- EzmaxApi::Object::FieldEEzsigntemplateelementdependencyOperator
- EzmaxApi::Object::FieldEEzsigntemplateelementdependencyValidation
- EzmaxApi::Object::FieldEEzsigntemplateformfieldDependencyrequirement
- EzmaxApi::Object::FieldEEzsigntemplateformfieldPositioning
- EzmaxApi::Object::FieldEEzsigntemplateformfieldPositioningoccurence
- EzmaxApi::Object::FieldEEzsigntemplateformfieldgroupSignerrequirement
- EzmaxApi::Object::FieldEEzsigntemplateformfieldgroupTooltipposition
- EzmaxApi::Object::FieldEEzsigntemplateformfieldgroupType
- EzmaxApi::Object::FieldEEzsigntemplateglobalModule
- EzmaxApi::Object::FieldEEzsigntemplateglobalSupplier
- EzmaxApi::Object::FieldEEzsigntemplatesignatureAttachmentnamesource
- EzmaxApi::Object::FieldEEzsigntemplatesignatureDependencyrequirement
- EzmaxApi::Object::FieldEEzsigntemplatesignatureFont
- EzmaxApi::Object::FieldEEzsigntemplatesignaturePositioning
- EzmaxApi::Object::FieldEEzsigntemplatesignaturePositioningoccurence
- EzmaxApi::Object::FieldEEzsigntemplatesignatureTooltipposition
- EzmaxApi::Object::FieldEEzsigntemplatesignatureType
- EzmaxApi::Object::FieldENotificationpreferenceStatus
- EzmaxApi::Object::FieldEPaymenttermType
- EzmaxApi::Object::FieldEPhoneType
- EzmaxApi::Object::FieldESessionhistoryEndby
- EzmaxApi::Object::FieldESystemconfigurationEzsign
- EzmaxApi::Object::FieldESystemconfigurationEzsignofficeplan
- EzmaxApi::Object::FieldESystemconfigurationLanguage1
- EzmaxApi::Object::FieldESystemconfigurationLanguage2
- EzmaxApi::Object::FieldESystemconfigurationNewexternaluseraction
- EzmaxApi::Object::FieldEUserEzsignaccess
- EzmaxApi::Object::FieldEUserEzsignprepaid
- EzmaxApi::Object::FieldEUserEzsignsendreminderfrequency
- EzmaxApi::Object::FieldEUserLogintype
- EzmaxApi::Object::FieldEUserOrigin
- EzmaxApi::Object::FieldEUserType
- EzmaxApi::Object::FieldEVariableexpenseTaxable
- EzmaxApi::Object::FieldEVersionhistoryType
- EzmaxApi::Object::FieldEVersionhistoryUsertype
- EzmaxApi::Object::FieldEWebhookEzsignevent
- EzmaxApi::Object::FieldEWebhookManagementevent
- EzmaxApi::Object::FieldEWebhookModule
- EzmaxApi::Object::FieldPksEzmaxclientOs
- EzmaxApi::Object::FontAutocompleteElementResponse
- EzmaxApi::Object::FontGetAutocompleteV2Response
- EzmaxApi::Object::FontGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::FranchisebrokerAutocompleteElementResponse
- EzmaxApi::Object::FranchisebrokerGetAutocompleteV2Response
- EzmaxApi::Object::FranchisebrokerGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::FranchiseofficeAutocompleteElementResponse
- EzmaxApi::Object::FranchiseofficeGetAutocompleteV2Response
- EzmaxApi::Object::FranchiseofficeGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::FranchisereferalincomeCreateObjectV2Request
- EzmaxApi::Object::FranchisereferalincomeCreateObjectV2Response
- EzmaxApi::Object::FranchisereferalincomeCreateObjectV2ResponseMPayload
- EzmaxApi::Object::FranchisereferalincomeRequest
- EzmaxApi::Object::FranchisereferalincomeRequestCompound
- EzmaxApi::Object::GlobalCustomerGetEndpointV1Response
- EzmaxApi::Object::GlobalEzmaxclientVersionV1Response
- EzmaxApi::Object::GlobalEzmaxcustomerGetConfigurationV1Response
- EzmaxApi::Object::HeaderAcceptLanguage
- EzmaxApi::Object::InscriptionGetAttachmentsV1Response
- EzmaxApi::Object::InscriptionGetAttachmentsV1ResponseMPayload
- EzmaxApi::Object::InscriptionGetCommunicationListV1Response
- EzmaxApi::Object::InscriptionGetCommunicationListV1ResponseMPayload
- EzmaxApi::Object::InscriptionGetCommunicationsendersV1Response
- EzmaxApi::Object::InscriptionGetCommunicationsendersV1ResponseMPayload
- EzmaxApi::Object::InscriptionnotauthenticatedGetCommunicationListV1Response
- EzmaxApi::Object::InscriptionnotauthenticatedGetCommunicationListV1ResponseMPayload
- EzmaxApi::Object::InscriptiontempGetCommunicationListV1Response
- EzmaxApi::Object::InscriptiontempGetCommunicationListV1ResponseMPayload
- EzmaxApi::Object::InvoiceGetAttachmentsV1Response
- EzmaxApi::Object::InvoiceGetAttachmentsV1ResponseMPayload
- EzmaxApi::Object::InvoiceGetCommunicationListV1Response
- EzmaxApi::Object::InvoiceGetCommunicationListV1ResponseMPayload
- EzmaxApi::Object::LanguageAutocompleteElementResponse
- EzmaxApi::Object::LanguageGetAutocompleteV2Response
- EzmaxApi::Object::LanguageGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::ModuleAutocompleteElementResponse
- EzmaxApi::Object::ModuleGetAutocompleteV2Response
- EzmaxApi::Object::ModuleGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::ModuleResponse
- EzmaxApi::Object::ModuleResponseCompound
- EzmaxApi::Object::ModulegroupGetAllV1Response
- EzmaxApi::Object::ModulegroupGetAllV1ResponseMPayload
- EzmaxApi::Object::ModulegroupResponse
- EzmaxApi::Object::ModulegroupResponseCompound
- EzmaxApi::Object::ModulesectionResponse
- EzmaxApi::Object::ModulesectionResponseCompound
- EzmaxApi::Object::MultilingualApikeyDescription
- EzmaxApi::Object::MultilingualBillingentityinternalDescription
- EzmaxApi::Object::MultilingualBrandingDescription
- EzmaxApi::Object::MultilingualEzmaxinvoicingsummaryinternalDescription
- EzmaxApi::Object::MultilingualEzsignfoldertypeName
- EzmaxApi::Object::MultilingualEzsignsignergroupDescription
- EzmaxApi::Object::MultilingualEzsignsigningreasonDescription
- EzmaxApi::Object::MultilingualNotificationsubsectionName
- EzmaxApi::Object::MultilingualNotificationtestName
- EzmaxApi::Object::MultilingualPaymenttermDescription
- EzmaxApi::Object::MultilingualSubnetDescription
- EzmaxApi::Object::MultilingualUsergroupName
- EzmaxApi::Object::MultilingualUserlogintypeDescription
- EzmaxApi::Object::MultilingualVariableexpenseDescription
- EzmaxApi::Object::MultilingualVersionhistoryDetail
- EzmaxApi::Object::NotificationsectionGetNotificationtestsV1Response
- EzmaxApi::Object::NotificationsectionGetNotificationtestsV1ResponseMPayload
- EzmaxApi::Object::NotificationsubsectionResponse
- EzmaxApi::Object::NotificationtestGetElementsV1Response
- EzmaxApi::Object::NotificationtestGetElementsV1ResponseMPayload
- EzmaxApi::Object::NotificationtestResponse
- EzmaxApi::Object::OtherincomeGetCommunicationListV1Response
- EzmaxApi::Object::OtherincomeGetCommunicationListV1ResponseMPayload
- EzmaxApi::Object::PaymenttermAutocompleteElementResponse
- EzmaxApi::Object::PaymenttermCreateObjectV1Request
- EzmaxApi::Object::PaymenttermCreateObjectV1Response
- EzmaxApi::Object::PaymenttermCreateObjectV1ResponseMPayload
- EzmaxApi::Object::PaymenttermEditObjectV1Request
- EzmaxApi::Object::PaymenttermEditObjectV1Response
- EzmaxApi::Object::PaymenttermGetAutocompleteV2Response
- EzmaxApi::Object::PaymenttermGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::PaymenttermGetListV1Response
- EzmaxApi::Object::PaymenttermGetListV1ResponseMPayload
- EzmaxApi::Object::PaymenttermGetObjectV2Response
- EzmaxApi::Object::PaymenttermGetObjectV2ResponseMPayload
- EzmaxApi::Object::PaymenttermListElement
- EzmaxApi::Object::PaymenttermRequest
- EzmaxApi::Object::PaymenttermRequestCompound
- EzmaxApi::Object::PaymenttermResponse
- EzmaxApi::Object::PaymenttermResponseCompound
- EzmaxApi::Object::PeriodAutocompleteElementResponse
- EzmaxApi::Object::PeriodGetAutocompleteV2Response
- EzmaxApi::Object::PeriodGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::PermissionCreateObjectV1Request
- EzmaxApi::Object::PermissionCreateObjectV1Response
- EzmaxApi::Object::PermissionCreateObjectV1ResponseMPayload
- EzmaxApi::Object::PermissionDeleteObjectV1Response
- EzmaxApi::Object::PermissionEditObjectV1Request
- EzmaxApi::Object::PermissionEditObjectV1Response
- EzmaxApi::Object::PermissionGetObjectV2Response
- EzmaxApi::Object::PermissionGetObjectV2ResponseMPayload
- EzmaxApi::Object::PermissionRequest
- EzmaxApi::Object::PermissionRequestCompound
- EzmaxApi::Object::PermissionResponse
- EzmaxApi::Object::PermissionResponseCompound
- EzmaxApi::Object::PhoneRequest
- EzmaxApi::Object::PhoneRequestCompound
- EzmaxApi::Object::PhoneRequestCompoundV2
- EzmaxApi::Object::PhoneRequestV2
- EzmaxApi::Object::PhoneResponse
- EzmaxApi::Object::PhoneResponseCompound
- EzmaxApi::Object::PhonetypeAutocompleteElementResponse
- EzmaxApi::Object::PhonetypeGetAutocompleteV2Response
- EzmaxApi::Object::PhonetypeGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::ProvinceAutocompleteElementResponse
- EzmaxApi::Object::ProvinceGetAutocompleteV2Response
- EzmaxApi::Object::ProvinceGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::RejectedoffertopurchaseGetCommunicationListV1Response
- EzmaxApi::Object::RejectedoffertopurchaseGetCommunicationListV1ResponseMPayload
- EzmaxApi::Object::ScimAuthenticationScheme
- EzmaxApi::Object::ScimEmail
- EzmaxApi::Object::ScimGroup
- EzmaxApi::Object::ScimGroupMember
- EzmaxApi::Object::ScimServiceProviderConfig
- EzmaxApi::Object::ScimServiceProviderConfigBulk
- EzmaxApi::Object::ScimServiceProviderConfigChangePassword
- EzmaxApi::Object::ScimServiceProviderConfigEtag
- EzmaxApi::Object::ScimServiceProviderConfigFilter
- EzmaxApi::Object::ScimServiceProviderConfigPatch
- EzmaxApi::Object::ScimServiceProviderConfigSort
- EzmaxApi::Object::ScimUser
- EzmaxApi::Object::ScimUserList
- EzmaxApi::Object::SecretquestionAutocompleteElementResponse
- EzmaxApi::Object::SecretquestionGetAutocompleteV2Response
- EzmaxApi::Object::SecretquestionGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::SessionhistoryGetListV1Response
- EzmaxApi::Object::SessionhistoryGetListV1ResponseMPayload
- EzmaxApi::Object::SessionhistoryListElement
- EzmaxApi::Object::SignatureCreateObjectV1Request
- EzmaxApi::Object::SignatureCreateObjectV1Response
- EzmaxApi::Object::SignatureCreateObjectV1ResponseMPayload
- EzmaxApi::Object::SignatureDeleteObjectV1Response
- EzmaxApi::Object::SignatureEditObjectV1Request
- EzmaxApi::Object::SignatureEditObjectV1Response
- EzmaxApi::Object::SignatureGetObjectV2Response
- EzmaxApi::Object::SignatureGetObjectV2ResponseMPayload
- EzmaxApi::Object::SignatureRequest
- EzmaxApi::Object::SignatureRequestCompound
- EzmaxApi::Object::SignatureResponse
- EzmaxApi::Object::SignatureResponseCompound
- EzmaxApi::Object::SubnetCreateObjectV1Request
- EzmaxApi::Object::SubnetCreateObjectV1Response
- EzmaxApi::Object::SubnetCreateObjectV1ResponseMPayload
- EzmaxApi::Object::SubnetDeleteObjectV1Response
- EzmaxApi::Object::SubnetEditObjectV1Request
- EzmaxApi::Object::SubnetEditObjectV1Response
- EzmaxApi::Object::SubnetGetObjectV2Response
- EzmaxApi::Object::SubnetGetObjectV2ResponseMPayload
- EzmaxApi::Object::SubnetRequest
- EzmaxApi::Object::SubnetRequestCompound
- EzmaxApi::Object::SubnetResponse
- EzmaxApi::Object::SubnetResponseCompound
- EzmaxApi::Object::SystemconfigurationEditObjectV1Request
- EzmaxApi::Object::SystemconfigurationEditObjectV1Response
- EzmaxApi::Object::SystemconfigurationGetObjectV2Response
- EzmaxApi::Object::SystemconfigurationGetObjectV2ResponseMPayload
- EzmaxApi::Object::SystemconfigurationRequest
- EzmaxApi::Object::SystemconfigurationRequestCompound
- EzmaxApi::Object::SystemconfigurationResponse
- EzmaxApi::Object::SystemconfigurationResponseCompound
- EzmaxApi::Object::TaxassignmentAutocompleteElementResponse
- EzmaxApi::Object::TaxassignmentGetAutocompleteV2Response
- EzmaxApi::Object::TaxassignmentGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::TextstylestaticResponse
- EzmaxApi::Object::TextstylestaticResponseCompound
- EzmaxApi::Object::TimezoneAutocompleteElementResponse
- EzmaxApi::Object::TimezoneGetAutocompleteV2Response
- EzmaxApi::Object::TimezoneGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::UserAutocompleteElementResponse
- EzmaxApi::Object::UserCreateEzsignuserV1Request
- EzmaxApi::Object::UserCreateEzsignuserV1Response
- EzmaxApi::Object::UserCreateEzsignuserV1ResponseMPayload
- EzmaxApi::Object::UserCreateObjectV1Request
- EzmaxApi::Object::UserCreateObjectV1Response
- EzmaxApi::Object::UserCreateObjectV1ResponseMPayload
- EzmaxApi::Object::UserCreateObjectV2Request
- EzmaxApi::Object::UserCreateObjectV2Response
- EzmaxApi::Object::UserCreateObjectV2ResponseMPayload
- EzmaxApi::Object::UserEditObjectV1Request
- EzmaxApi::Object::UserEditObjectV1Response
- EzmaxApi::Object::UserEditPermissionsV1Request
- EzmaxApi::Object::UserEditPermissionsV1Response
- EzmaxApi::Object::UserEditPermissionsV1ResponseMPayload
- EzmaxApi::Object::UserGetApikeysV1Response
- EzmaxApi::Object::UserGetApikeysV1ResponseMPayload
- EzmaxApi::Object::UserGetAutocompleteV2Response
- EzmaxApi::Object::UserGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::UserGetEffectivePermissionsV1Response
- EzmaxApi::Object::UserGetEffectivePermissionsV1ResponseMPayload
- EzmaxApi::Object::UserGetListV1Response
- EzmaxApi::Object::UserGetListV1ResponseMPayload
- EzmaxApi::Object::UserGetObjectV2Response
- EzmaxApi::Object::UserGetObjectV2ResponseMPayload
- EzmaxApi::Object::UserGetPermissionsV1Response
- EzmaxApi::Object::UserGetPermissionsV1ResponseMPayload
- EzmaxApi::Object::UserGetSubnetsV1Response
- EzmaxApi::Object::UserGetSubnetsV1ResponseMPayload
- EzmaxApi::Object::UserGetUsergroupexternalsV1Response
- EzmaxApi::Object::UserGetUsergroupexternalsV1ResponseMPayload
- EzmaxApi::Object::UserGetUsergroupsV1Response
- EzmaxApi::Object::UserGetUsergroupsV1ResponseMPayload
- EzmaxApi::Object::UserListElement
- EzmaxApi::Object::UserRequest
- EzmaxApi::Object::UserRequestCompound
- EzmaxApi::Object::UserRequestCompoundV2
- EzmaxApi::Object::UserRequestV2
- EzmaxApi::Object::UserResponse
- EzmaxApi::Object::UserResponseCompound
- EzmaxApi::Object::UserSendPasswordResetV1Response
- EzmaxApi::Object::UsergroupAutocompleteElementResponse
- EzmaxApi::Object::UsergroupCreateObjectV1Request
- EzmaxApi::Object::UsergroupCreateObjectV1Response
- EzmaxApi::Object::UsergroupCreateObjectV1ResponseMPayload
- EzmaxApi::Object::UsergroupEditObjectV1Request
- EzmaxApi::Object::UsergroupEditObjectV1Response
- EzmaxApi::Object::UsergroupEditPermissionsV1Request
- EzmaxApi::Object::UsergroupEditPermissionsV1Response
- EzmaxApi::Object::UsergroupEditPermissionsV1ResponseMPayload
- EzmaxApi::Object::UsergroupEditUsergroupdelegationsV1Request
- EzmaxApi::Object::UsergroupEditUsergroupdelegationsV1Response
- EzmaxApi::Object::UsergroupEditUsergroupdelegationsV1ResponseMPayload
- EzmaxApi::Object::UsergroupEditUsergroupmembershipsV1Request
- EzmaxApi::Object::UsergroupEditUsergroupmembershipsV1Response
- EzmaxApi::Object::UsergroupEditUsergroupmembershipsV1ResponseMPayload
- EzmaxApi::Object::UsergroupGetAutocompleteV2Response
- EzmaxApi::Object::UsergroupGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::UsergroupGetListV1Response
- EzmaxApi::Object::UsergroupGetListV1ResponseMPayload
- EzmaxApi::Object::UsergroupGetObjectV2Response
- EzmaxApi::Object::UsergroupGetObjectV2ResponseMPayload
- EzmaxApi::Object::UsergroupGetPermissionsV1Response
- EzmaxApi::Object::UsergroupGetPermissionsV1ResponseMPayload
- EzmaxApi::Object::UsergroupGetUsergroupdelegationsV1Response
- EzmaxApi::Object::UsergroupGetUsergroupdelegationsV1ResponseMPayload
- EzmaxApi::Object::UsergroupGetUsergroupmembershipsV1Response
- EzmaxApi::Object::UsergroupGetUsergroupmembershipsV1ResponseMPayload
- EzmaxApi::Object::UsergroupListElement
- EzmaxApi::Object::UsergroupRequest
- EzmaxApi::Object::UsergroupRequestCompound
- EzmaxApi::Object::UsergroupResponse
- EzmaxApi::Object::UsergroupResponseCompound
- EzmaxApi::Object::UsergroupdelegationCreateObjectV1Request
- EzmaxApi::Object::UsergroupdelegationCreateObjectV1Response
- EzmaxApi::Object::UsergroupdelegationCreateObjectV1ResponseMPayload
- EzmaxApi::Object::UsergroupdelegationDeleteObjectV1Response
- EzmaxApi::Object::UsergroupdelegationEditObjectV1Request
- EzmaxApi::Object::UsergroupdelegationEditObjectV1Response
- EzmaxApi::Object::UsergroupdelegationGetObjectV2Response
- EzmaxApi::Object::UsergroupdelegationGetObjectV2ResponseMPayload
- EzmaxApi::Object::UsergroupdelegationRequest
- EzmaxApi::Object::UsergroupdelegationRequestCompound
- EzmaxApi::Object::UsergroupdelegationResponse
- EzmaxApi::Object::UsergroupdelegationResponseCompound
- EzmaxApi::Object::UsergroupexternalAutocompleteElementResponse
- EzmaxApi::Object::UsergroupexternalCreateObjectV1Request
- EzmaxApi::Object::UsergroupexternalCreateObjectV1Response
- EzmaxApi::Object::UsergroupexternalCreateObjectV1ResponseMPayload
- EzmaxApi::Object::UsergroupexternalDeleteObjectV1Response
- EzmaxApi::Object::UsergroupexternalEditObjectV1Request
- EzmaxApi::Object::UsergroupexternalEditObjectV1Response
- EzmaxApi::Object::UsergroupexternalGetAutocompleteV2Response
- EzmaxApi::Object::UsergroupexternalGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::UsergroupexternalGetListV1Response
- EzmaxApi::Object::UsergroupexternalGetListV1ResponseMPayload
- EzmaxApi::Object::UsergroupexternalGetObjectV2Response
- EzmaxApi::Object::UsergroupexternalGetObjectV2ResponseMPayload
- EzmaxApi::Object::UsergroupexternalGetUsergroupexternalmembershipsV1Response
- EzmaxApi::Object::UsergroupexternalGetUsergroupexternalmembershipsV1ResponseMPayload
- EzmaxApi::Object::UsergroupexternalGetUsergroupsV1Response
- EzmaxApi::Object::UsergroupexternalGetUsergroupsV1ResponseMPayload
- EzmaxApi::Object::UsergroupexternalListElement
- EzmaxApi::Object::UsergroupexternalRequest
- EzmaxApi::Object::UsergroupexternalRequestCompound
- EzmaxApi::Object::UsergroupexternalResponse
- EzmaxApi::Object::UsergroupexternalResponseCompound
- EzmaxApi::Object::UsergroupexternalmembershipResponse
- EzmaxApi::Object::UsergroupexternalmembershipResponseCompound
- EzmaxApi::Object::UsergroupmembershipCreateObjectV1Request
- EzmaxApi::Object::UsergroupmembershipCreateObjectV1Response
- EzmaxApi::Object::UsergroupmembershipCreateObjectV1ResponseMPayload
- EzmaxApi::Object::UsergroupmembershipDeleteObjectV1Response
- EzmaxApi::Object::UsergroupmembershipEditObjectV1Request
- EzmaxApi::Object::UsergroupmembershipEditObjectV1Response
- EzmaxApi::Object::UsergroupmembershipGetObjectV2Response
- EzmaxApi::Object::UsergroupmembershipGetObjectV2ResponseMPayload
- EzmaxApi::Object::UsergroupmembershipRequest
- EzmaxApi::Object::UsergroupmembershipRequestCompound
- EzmaxApi::Object::UsergroupmembershipResponse
- EzmaxApi::Object::UsergroupmembershipResponseCompound
- EzmaxApi::Object::UserlogintypeAutocompleteElementResponse
- EzmaxApi::Object::UserlogintypeGetAutocompleteV2Response
- EzmaxApi::Object::UserlogintypeGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::UserlogintypeResponse
- EzmaxApi::Object::UserstagedCreateUserV1Response
- EzmaxApi::Object::UserstagedCreateUserV1ResponseMPayload
- EzmaxApi::Object::UserstagedDeleteObjectV1Response
- EzmaxApi::Object::UserstagedGetListV1Response
- EzmaxApi::Object::UserstagedGetListV1ResponseMPayload
- EzmaxApi::Object::UserstagedGetObjectV2Response
- EzmaxApi::Object::UserstagedGetObjectV2ResponseMPayload
- EzmaxApi::Object::UserstagedListElement
- EzmaxApi::Object::UserstagedMapV1Request
- EzmaxApi::Object::UserstagedMapV1Response
- EzmaxApi::Object::UserstagedResponse
- EzmaxApi::Object::UserstagedResponseCompound
- EzmaxApi::Object::VariableexpenseAutocompleteElementResponse
- EzmaxApi::Object::VariableexpenseCreateObjectV1Request
- EzmaxApi::Object::VariableexpenseCreateObjectV1Response
- EzmaxApi::Object::VariableexpenseCreateObjectV1ResponseMPayload
- EzmaxApi::Object::VariableexpenseEditObjectV1Request
- EzmaxApi::Object::VariableexpenseEditObjectV1Response
- EzmaxApi::Object::VariableexpenseGetAutocompleteV2Response
- EzmaxApi::Object::VariableexpenseGetAutocompleteV2ResponseMPayload
- EzmaxApi::Object::VariableexpenseGetListV1Response
- EzmaxApi::Object::VariableexpenseGetListV1ResponseMPayload
- EzmaxApi::Object::VariableexpenseGetObjectV2Response
- EzmaxApi::Object::VariableexpenseGetObjectV2ResponseMPayload
- EzmaxApi::Object::VariableexpenseListElement
- EzmaxApi::Object::VariableexpenseRequest
- EzmaxApi::Object::VariableexpenseRequestCompound
- EzmaxApi::Object::VariableexpenseResponse
- EzmaxApi::Object::VariableexpenseResponseCompound
- EzmaxApi::Object::VersionhistoryGetObjectV2Response
- EzmaxApi::Object::VersionhistoryGetObjectV2ResponseMPayload
- EzmaxApi::Object::VersionhistoryResponse
- EzmaxApi::Object::VersionhistoryResponseCompound
- EzmaxApi::Object::WebhookCreateObjectV2Request
- EzmaxApi::Object::WebhookCreateObjectV2Response
- EzmaxApi::Object::WebhookCreateObjectV2ResponseMPayload
- EzmaxApi::Object::WebhookDeleteObjectV1Response
- EzmaxApi::Object::WebhookEditObjectV1Request
- EzmaxApi::Object::WebhookEditObjectV1Response
- EzmaxApi::Object::WebhookEzsignDocumentCompleted
- EzmaxApi::Object::WebhookEzsignDocumentFormCompleted
- EzmaxApi::Object::WebhookEzsignDocumentUnsent
- EzmaxApi::Object::WebhookEzsignEzsignsignerAcceptclause
- EzmaxApi::Object::WebhookEzsignEzsignsignerConnect
- EzmaxApi::Object::WebhookEzsignFolderCompleted
- EzmaxApi::Object::WebhookEzsignFolderDisposed
- EzmaxApi::Object::WebhookEzsignFolderSent
- EzmaxApi::Object::WebhookEzsignFolderUnsent
- EzmaxApi::Object::WebhookEzsignSignatureSigned
- EzmaxApi::Object::WebhookGetHistoryV1Response
- EzmaxApi::Object::WebhookGetHistoryV1ResponseMPayload
- EzmaxApi::Object::WebhookGetListV1Response
- EzmaxApi::Object::WebhookGetListV1ResponseMPayload
- EzmaxApi::Object::WebhookGetObjectV2Response
- EzmaxApi::Object::WebhookGetObjectV2ResponseMPayload
- EzmaxApi::Object::WebhookListElement
- EzmaxApi::Object::WebhookRegenerateApikeyV1Request
- EzmaxApi::Object::WebhookRegenerateApikeyV1Response
- EzmaxApi::Object::WebhookRegenerateApikeyV1ResponseMPayload
- EzmaxApi::Object::WebhookRequest
- EzmaxApi::Object::WebhookRequestCompound
- EzmaxApi::Object::WebhookResponse
- EzmaxApi::Object::WebhookResponseCompound
- EzmaxApi::Object::WebhookTestV1Response
- EzmaxApi::Object::WebhookUserUserCreated
- EzmaxApi::Object::WebhookUserstagedUserstagedCreated
- EzmaxApi::Object::WebhookheaderRequest
- EzmaxApi::Object::WebhookheaderRequestCompound
- EzmaxApi::Object::WebhookheaderResponse
- EzmaxApi::Object::WebhookheaderResponseCompound
- EzmaxApi::Object::WebsiteRequest
- EzmaxApi::Object::WebsiteRequestCompound
- EzmaxApi::Object::WebsocketRequestServerGetWebsocketIDV1
- EzmaxApi::Object::WebsocketResponseErrorV1
- EzmaxApi::Object::WebsocketResponseErrorV1MPayload
- EzmaxApi::Object::WebsocketResponseGetWebsocketIDV1
- EzmaxApi::Object::WebsocketResponseGetWebsocketIDV1MPayload
- EzmaxApi::Object::WebsocketResponseInformationV1
- EzmaxApi::Object::WebsocketResponseInformationV1MPayload
Authentication schemes defined for the API:
- Type: API key
- API key parameter name: Authorization
- Location: HTTP header
- Type: HTTP Bearer Token authentication
- Type: API key
- API key parameter name: sAuthorization
- Location: URL query string