Git Product home page Git Product logo

ezmax-sdk-perl's Introduction

NAME

EzmaxApi::Role - a Moose role for the eZmax API Definition (Full)

This API expose all the functionnalities for the eZmax and eZsign applications.

VERSION

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

A note on Moose

This role is the only component of the library that uses Moose. See EzmaxApi::ApiFactory for non-Moosey usage.

SYNOPSIS

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);

Structure of the library

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.

Configuring authentication

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.

METHODS

base_url

The generated code has the base_url already set as a default value. This method returns the current value of base_url.

api_factory

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

MISSING METHODS

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.

BUILDING YOUR LIBRARY

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.

AUTOMATIC DOCUMENTATION

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.

DOCUMENTATION FROM THE OpenAPI Spec

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.

Installation Prerequisites

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

LOAD THE MODULES

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;

GETTING STARTED

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";
}

DOCUMENTATION FOR API ENDPOINTS

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

DOCUMENTATION FOR MODELS

DOCUMENTATION FOR AUTHORIZATION

Authentication schemes defined for the API:

Authorization

  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header

Bearer

  • Type: HTTP Bearer Token authentication

Presigned

  • Type: API key
  • API key parameter name: sAuthorization
  • Location: URL query string

ezmax-sdk-perl's People

Contributors

herrick19 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.