From d146f161b218ee42a69e1da262d1cc15670efd02 Mon Sep 17 00:00:00 2001 From: raja-7453 Date: Thu, 13 May 2021 12:10:45 +0530 Subject: [PATCH] Supported External ID and improved Utility methods --- README.md | 2 +- .../crm/api/record/DeleteRecordHeader.php | 14 ++++++ .../crm/api/record/DeleteRecordsHeader.php | 14 ++++++ .../zoho/crm/api/record/GetRecordHeader.php | 5 ++ .../zoho/crm/api/record/GetRecordsHeader.php | 5 ++ .../zoho/crm/api/record/RecordOperations.php | 24 ++++++--- .../crm/api/record/SearchRecordsHeader.php | 14 ++++++ .../crm/api/record/UpdateRecordHeader.php | 14 ++++++ .../crm/api/record/UpdateRecordsHeader.php | 14 ++++++ .../crm/api/record/UpsertRecordsHeader.php | 14 ++++++ src/com/zoho/crm/api/util/Constants.php | 2 +- .../zoho/crm/api/util/ModuleFieldsHandler.php | 50 +++++++++---------- src/com/zoho/crm/api/util/Utility.php | 27 +++++++--- src/resources/JSONDetails.json | 2 +- 14 files changed, 159 insertions(+), 42 deletions(-) create mode 100644 src/com/zoho/crm/api/record/DeleteRecordHeader.php create mode 100644 src/com/zoho/crm/api/record/DeleteRecordsHeader.php create mode 100644 src/com/zoho/crm/api/record/SearchRecordsHeader.php create mode 100644 src/com/zoho/crm/api/record/UpdateRecordHeader.php create mode 100644 src/com/zoho/crm/api/record/UpdateRecordsHeader.php create mode 100644 src/com/zoho/crm/api/record/UpsertRecordsHeader.php diff --git a/README.md b/README.md index 40d0021..621b223 100755 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ You can include the SDK to your project using: - Run the command below: ```sh - composer require zohocrm/php-sdk:3.0.3 + composer require zohocrm/php-sdk:3.1.0 ``` - The PHP SDK will be installed and a package named vendor will be created in the workspace of your client app. diff --git a/src/com/zoho/crm/api/record/DeleteRecordHeader.php b/src/com/zoho/crm/api/record/DeleteRecordHeader.php new file mode 100644 index 0000000..8935dac --- /dev/null +++ b/src/com/zoho/crm/api/record/DeleteRecordHeader.php @@ -0,0 +1,14 @@ +setCategoryMethod(Constants::REQUEST_CATEGORY_UPDATE); $handlerInstance->setContentType('application/json'); $handlerInstance->setRequest($request); + $handlerInstance->setHeader($headerInstance); Utility::getFields($moduleAPIName); $handlerInstance->setModuleAPIName($moduleAPIName); return $handlerInstance->apiCall(ActionHandler::class, 'application/json'); @@ -72,9 +74,10 @@ public function updateRecord(string $id, string $moduleAPIName, BodyWrapper $re * @param string $id A string * @param string $moduleAPIName A string * @param ParameterMap $paramInstance An instance of ParameterMap + * @param HeaderMap $headerInstance An instance of HeaderMap * @return APIResponse An instance of APIResponse */ - public function deleteRecord(string $id, string $moduleAPIName, ParameterMap $paramInstance=null) + public function deleteRecord(string $id, string $moduleAPIName, ParameterMap $paramInstance=null, HeaderMap $headerInstance=null) { $handlerInstance=new CommonAPIHandler(); $apiPath=""; @@ -86,6 +89,7 @@ public function deleteRecord(string $id, string $moduleAPIName, ParameterMap $p $handlerInstance->setHttpMethod(Constants::REQUEST_METHOD_DELETE); $handlerInstance->setCategoryMethod(Constants::REQUEST_METHOD_DELETE); $handlerInstance->setParam($paramInstance); + $handlerInstance->setHeader($headerInstance); return $handlerInstance->apiCall(ActionHandler::class, 'application/json'); } @@ -142,9 +146,10 @@ public function createRecords(string $moduleAPIName, BodyWrapper $request) * The method to update records * @param string $moduleAPIName A string * @param BodyWrapper $request An instance of BodyWrapper + * @param HeaderMap $headerInstance An instance of HeaderMap * @return APIResponse An instance of APIResponse */ - public function updateRecords(string $moduleAPIName, BodyWrapper $request) + public function updateRecords(string $moduleAPIName, BodyWrapper $request, HeaderMap $headerInstance=null) { $handlerInstance=new CommonAPIHandler(); $apiPath=""; @@ -156,6 +161,7 @@ public function updateRecords(string $moduleAPIName, BodyWrapper $request) $handlerInstance->setContentType('application/json'); $handlerInstance->setRequest($request); $handlerInstance->setMandatoryChecker(true); + $handlerInstance->setHeader($headerInstance); Utility::getFields($moduleAPIName); $handlerInstance->setModuleAPIName($moduleAPIName); return $handlerInstance->apiCall(ActionHandler::class, 'application/json'); @@ -166,9 +172,10 @@ public function updateRecords(string $moduleAPIName, BodyWrapper $request) * The method to delete records * @param string $moduleAPIName A string * @param ParameterMap $paramInstance An instance of ParameterMap + * @param HeaderMap $headerInstance An instance of HeaderMap * @return APIResponse An instance of APIResponse */ - public function deleteRecords(string $moduleAPIName, ParameterMap $paramInstance=null) + public function deleteRecords(string $moduleAPIName, ParameterMap $paramInstance=null, HeaderMap $headerInstance=null) { $handlerInstance=new CommonAPIHandler(); $apiPath=""; @@ -178,6 +185,7 @@ public function deleteRecords(string $moduleAPIName, ParameterMap $paramInstanc $handlerInstance->setHttpMethod(Constants::REQUEST_METHOD_DELETE); $handlerInstance->setCategoryMethod(Constants::REQUEST_METHOD_DELETE); $handlerInstance->setParam($paramInstance); + $handlerInstance->setHeader($headerInstance); return $handlerInstance->apiCall(ActionHandler::class, 'application/json'); } @@ -186,9 +194,10 @@ public function deleteRecords(string $moduleAPIName, ParameterMap $paramInstanc * The method to upsert records * @param string $moduleAPIName A string * @param BodyWrapper $request An instance of BodyWrapper + * @param HeaderMap $headerInstance An instance of HeaderMap * @return APIResponse An instance of APIResponse */ - public function upsertRecords(string $moduleAPIName, BodyWrapper $request) + public function upsertRecords(string $moduleAPIName, BodyWrapper $request, HeaderMap $headerInstance=null) { $handlerInstance=new CommonAPIHandler(); $apiPath=""; @@ -200,6 +209,7 @@ public function upsertRecords(string $moduleAPIName, BodyWrapper $request) $handlerInstance->setCategoryMethod(Constants::REQUEST_CATEGORY_ACTION); $handlerInstance->setContentType('application/json'); $handlerInstance->setRequest($request); + $handlerInstance->setHeader($headerInstance); Utility::getFields($moduleAPIName); $handlerInstance->setModuleAPIName($moduleAPIName); return $handlerInstance->apiCall(ActionHandler::class, 'application/json'); @@ -233,9 +243,10 @@ public function getDeletedRecords(string $moduleAPIName, ParameterMap $paramIns * The method to search records * @param string $moduleAPIName A string * @param ParameterMap $paramInstance An instance of ParameterMap + * @param HeaderMap $headerInstance An instance of HeaderMap * @return APIResponse An instance of APIResponse */ - public function searchRecords(string $moduleAPIName, ParameterMap $paramInstance=null) + public function searchRecords(string $moduleAPIName, ParameterMap $paramInstance=null, HeaderMap $headerInstance=null) { $handlerInstance=new CommonAPIHandler(); $apiPath=""; @@ -246,6 +257,7 @@ public function searchRecords(string $moduleAPIName, ParameterMap $paramInstanc $handlerInstance->setHttpMethod(Constants::REQUEST_METHOD_GET); $handlerInstance->setCategoryMethod(Constants::REQUEST_CATEGORY_READ); $handlerInstance->setParam($paramInstance); + $handlerInstance->setHeader($headerInstance); Utility::getFields($moduleAPIName); $handlerInstance->setModuleAPIName($moduleAPIName); return $handlerInstance->apiCall(ResponseHandler::class, 'application/json'); diff --git a/src/com/zoho/crm/api/record/SearchRecordsHeader.php b/src/com/zoho/crm/api/record/SearchRecordsHeader.php new file mode 100644 index 0000000..f783795 --- /dev/null +++ b/src/com/zoho/crm/api/record/SearchRecordsHeader.php @@ -0,0 +1,14 @@ +getResourcePath() . DIRECTORY_SEPARATOR . Constants::FIELD_DETAILS_DIRECTORY; - - return $resourcesPath; + return Initializer::getInitializer()->getResourcePath() . DIRECTORY_SEPARATOR . Constants::FIELD_DETAILS_DIRECTORY; } private static function getFileName() @@ -35,7 +33,7 @@ private static function getFileName() return base64_encode(implode(array_map("chr", $input))); } - + /** * The method to delete fields JSON File of the current user. * @throws SDKException @@ -45,10 +43,10 @@ public static function deleteFieldsFile() try { $fileName = self::getFileName(); - + $recordFieldDetailsPath = self::getDirectory() . DIRECTORY_SEPARATOR . $fileName . ".json"; - if (file_exists($recordFieldDetailsPath)) + if (file_exists($recordFieldDetailsPath)) { unlink($recordFieldDetailsPath); } @@ -58,11 +56,11 @@ public static function deleteFieldsFile() $sdkException = new SDKException(null, null, null, $e); SDKLogger::severeError(Constants::DELETE_FIELD_FILE_ERROR, $sdkException); - + throw $sdkException; } } - + /** * The method to delete all the field JSON files under resources directory. */ @@ -71,15 +69,15 @@ public static function deleteAllFieldFiles() try { $recordFieldDetailsDirectory = self::getDirectory(); - + $files = glob($recordFieldDetailsDirectory.'/*.json'); - - // Deleting all the files in the list + + // Deleting all the files in the list foreach($files as $file) - { - if(is_file($file)) - // Delete the given file - unlink($file); + { + if(is_file($file)) + // Delete the given file + unlink($file); } } catch (\Exception $e) @@ -91,7 +89,7 @@ public static function deleteAllFieldFiles() throw $sdkException; } } - + /** * The method to delete fields of the given module from the current user's fields JSON file. * @param module A string representing the module. @@ -101,24 +99,22 @@ private static function deleteFields($module) try { $recordFieldDetailsPath = self::getDirectory() . DIRECTORY_SEPARATOR . self::getFileName() . ".json"; - - if (file_exists($recordFieldDetailsPath)) + + if (file_exists($recordFieldDetailsPath)) { $recordFieldDetailsJSON = Initializer::getJSON($recordFieldDetailsPath); if(array_key_exists(strtolower($module), $recordFieldDetailsJSON)) { Utility::deleteFields($recordFieldDetailsJSON, $module); - + file_put_contents($recordFieldDetailsPath, json_encode($recordFieldDetailsJSON)); } } } catch (\Exception $e) { - $sdkException = new SDKException(null, null, null, $e); - - throw $sdkException; + throw new SDKException(null, null, null, $e); } } @@ -133,8 +129,8 @@ public static function refreshFields(string $module) self::deleteFields($module); Utility::getFields($module); - } - catch (SDKException $ex) + } + catch (SDKException $ex) { SDKLogger::severeError(Constants::REFRESH_SINGLE_MODULE_FIELDS_ERROR . $module, $ex); @@ -152,11 +148,11 @@ public static function refreshFields(string $module) public static function refreshAllModules() { - try + try { Utility::refreshModules(); - } - catch (SDKException $ex) + } + catch (SDKException $ex) { SDKLogger::severeError(Constants::REFRESH_ALL_MODULE_FIELDS_ERROR, $ex); diff --git a/src/com/zoho/crm/api/util/Utility.php b/src/com/zoho/crm/api/util/Utility.php index e15c514..ae07436 100755 --- a/src/com/zoho/crm/api/util/Utility.php +++ b/src/com/zoho/crm/api/util/Utility.php @@ -47,6 +47,8 @@ class Utility public static $apiSupportedModule = array(); + public static $moduleAPIName; + /** * This method to fetch field details of the current module for the current user and store the result in a JSON file. * @param string $moduleAPIName @@ -54,6 +56,14 @@ class Utility */ public static function getFields($moduleAPIName) { + self::$moduleAPIName = $moduleAPIName; + + self::getFieldsInfo(self::$moduleAPIName); + } + + public static function getFieldsInfo($moduleAPIName) + { + $recordFieldDetailsPath = null; $lastModifiedTime = null; @@ -269,7 +279,7 @@ private static function modifyFields($recordFieldDetailsPath, $modifiedTime) foreach($modifiedModules as $module => $value) { - Utility::getFields($module); + Utility::getFieldsInfo($module); } } } @@ -387,7 +397,7 @@ private static function checkRelatedListExists($relatedModuleName, $modulerelate { $commonAPIHandler->setModuleAPIName($relatedListJO[Constants::MODULE]); - self::getFields($relatedListJO[Constants::MODULE]); + self::getFieldsInfo($relatedListJO[Constants::MODULE]); } return true; @@ -546,8 +556,13 @@ public static function getFieldDetails($moduleAPIName) $errorResponse[Constants::STATUS] = $exception->getStatus()->getValue(); $errorResponse[Constants::MESSAGE] = $exception->getMessage()->getValue(); + + if(strtolower(self::$moduleAPIName) == strtolower($moduleAPIName)) + { + throw new SDKException(Constants::API_EXCEPTION, null, $errorResponse); + } - throw new SDKException(Constants::API_EXCEPTION, null, $errorResponse); + SDKLogger::severeError(Constants::API_EXCEPTION, new \Exception(json_encode($errorResponse, true))); } } else @@ -620,7 +635,7 @@ private static function getAllModules($header) $moduleResponseWrapper = Constants::MODULE_RESPONSEWRAPPER; - $apiException =Constants::MODULE_API_EXCEPTION; + $apiException = Constants::MODULE_API_EXCEPTION; if($responseObject instanceof $moduleResponseWrapper) { @@ -657,7 +672,7 @@ public static function refreshModules() { self::$forceRefresh = true; - self::getFields(null); + self::getFieldsInfo(null); self::$forceRefresh = false; } @@ -835,7 +850,7 @@ public static function setDataType($fieldDetail, $field, $moduleAPIName) if (strlen($module) > 0) { - Utility::getFields($module); + self::getFieldsInfo($module); } $fieldDetail[Constants::NAME] = $keyName; diff --git a/src/resources/JSONDetails.json b/src/resources/JSONDetails.json index 1660801..836b252 100644 --- a/src/resources/JSONDetails.json +++ b/src/resources/JSONDetails.json @@ -1 +1 @@ -{"com\\zoho\\crm\\api\\file\\BodyWrapper":{"file":{"name":"file","max-length":10,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\record\\BodyWrapper":{"process":{"name":"process","type":"List"},"data":{"structure_name":"com\\zoho\\crm\\api\\record\\Record","name":"data","max-length":100,"type":"List","required":true,"min-length":1},"larId":{"name":"lar_id","type":"String"},"wfTrigger":{"name":"wf_trigger","type":"String"},"trigger":{"name":"trigger","type":"List"},"duplicateCheckFields":{"name":"duplicate_check_fields","type":"List"}},"com\\zoho\\crm\\api\\fields\\AutoNumber":{"startNumber":{"name":"start_number","type":"Integer"},"prefix":{"name":"prefix","type":"String"},"suffix":{"name":"suffix","type":"String"}},"com\\zoho\\crm\\api\\notification\\APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","INTERNAL_ERROR","NOT_SUBSCRIBED"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"maximum_length","type":"Integer"},{"name":"param","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","the module name given seems to be invalid","duplicate data","Not subscribed for actions-watch of the given module/channel","required field not found","invalid data","Not subscribed for actions-watch of the given channel","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\users\\GetUserHeader":{"IfModifiedSince":{"name":"If-Modified-Since","type":"DateTime"}},"com\\zoho\\crm\\api\\file\\GetFileParam":{"id":{"name":"id","type":"String","required":true}},"com\\zoho\\crm\\api\\record\\ResponseWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\record\\Record","name":"data","type":"List"},"info":{"structure_name":"com\\zoho\\crm\\api\\record\\Info","name":"info","type":"com\\zoho\\crm\\api\\record\\Info"}},"com\\zoho\\crm\\api\\record\\ConvertActionResponse":{"classes":["com\\zoho\\crm\\api\\record\\APIException","com\\zoho\\crm\\api\\record\\SuccessfulConvert"],"interface":true},"com\\zoho\\crm\\api\\relatedlists\\GetRelatedListsParam":{"module":{"name":"module","type":"String"}},"com\\zoho\\crm\\api\\profiles\\Category":{"displayLabel":{"name":"display_label","type":"String"},"permissionsDetails":{"name":"permissions_details","type":"List"},"name":{"name":"name","type":"String"}},"com\\zoho\\crm\\api\\users\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\users\\ResponseWrapper","com\\zoho\\crm\\api\\users\\APIException"],"interface":true},"com\\zoho\\crm\\api\\tags\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"created_time","type":"DateTime"},{"name":"modified_time","type":"DateTime"},{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"modified_by","type":"com\\zoho\\crm\\api\\users\\User"},{"name":"id","type":"Long"},{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_by","type":"com\\zoho\\crm\\api\\users\\User"},{"name":"tags","type":"List"}],"name":"details","type":"Map"},"message":{"values":["tags created successfully","tags updated successfully","tags deleted successfully"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\record\\MassUpdateResponseWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\record\\MassUpdateResponse","name":"data","type":"List"}},"com\\zoho\\crm\\api\\org\\ResponseWrapper":{"org":{"structure_name":"com\\zoho\\crm\\api\\org\\Org","name":"org","type":"List"}},"com\\zoho\\crm\\api\\users\\Territory":{"manager":{"name":"manager","type":"Boolean"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com\\zoho\\crm\\api\\fields\\AssociationDetails":{"lookupField":{"structure_name":"com\\zoho\\crm\\api\\fields\\LookupField","name":"lookup_field","type":"com\\zoho\\crm\\api\\fields\\LookupField"},"relatedField":{"structure_name":"com\\zoho\\crm\\api\\fields\\LookupField","name":"related_field","type":"com\\zoho\\crm\\api\\fields\\LookupField"}},"com\\zoho\\crm\\api\\record\\ActionWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\record\\ActionResponse","name":"data","type":"List"}},"com\\zoho\\crm\\api\\relatedrecords\\ResponseWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\record\\Record","name":"data","type":"List"},"info":{"structure_name":"com\\zoho\\crm\\api\\record\\Info","name":"info","type":"com\\zoho\\crm\\api\\record\\Info"}},"com\\zoho\\crm\\api\\users\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\users\\SuccessResponse","com\\zoho\\crm\\api\\users\\APIException"],"interface":true},"com\\zoho\\crm\\api\\record\\Record":{"modifiedTime":{"name":"Modified_Time","type":"DateTime"},"createdBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Created_By","type":"com\\zoho\\crm\\api\\users\\User"},"createdTime":{"name":"Created_Time","type":"DateTime"},"modifiedBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Modified_By","type":"com\\zoho\\crm\\api\\users\\User"},"id":{"name":"id","type":"Long","primary":true},"tag":{"structure_name":"com\\zoho\\crm\\api\\tags\\Tag","name":"Tag","type":"List","skip_mandatory":true}},"com\\zoho\\crm\\api\\relatedrecords\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\relatedrecords\\APIException","com\\zoho\\crm\\api\\relatedrecords\\ActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\sharerecords\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["record will be shared successfully","Sharing Revoked"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\fields\\ResponseWrapper":{"fields":{"structure_name":"com\\zoho\\crm\\api\\fields\\Field","name":"fields","type":"List"}},"com\\zoho\\crm\\api\\customviews\\SharedDetails":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"},"subordinates":{"name":"subordinates","type":"Boolean"}},"com\\zoho\\crm\\api\\customviews\\GetCustomViewParam":{"module":{"name":"module","type":"String"}},"com\\zoho\\crm\\api\\currencies\\ResponseWrapper":{"currencies":{"structure_name":"com\\zoho\\crm\\api\\currencies\\Currency","name":"currencies","type":"List"}},"com\\zoho\\crm\\api\\layouts\\ResponseWrapper":{"layouts":{"structure_name":"com\\zoho\\crm\\api\\layouts\\Layout","name":"layouts","type":"List"}},"com\\zoho\\crm\\api\\record\\GetRecordsHeader":{"IfModifiedSince":{"name":"If-Modified-Since","type":"DateTime"}},"com\\zoho\\crm\\api\\modules\\ActionWrapper":{"modules":{"structure_name":"com\\zoho\\crm\\api\\modules\\ActionResponse","name":"modules","type":"List"}},"com\\zoho\\crm\\api\\record\\RecurringActivity":{"rrule":{"name":"RRULE","type":"String","required":true}},"com\\zoho\\crm\\api\\relatedlists\\ResponseWrapper":{"relatedLists":{"structure_name":"com\\zoho\\crm\\api\\relatedlists\\RelatedList","name":"related_lists","type":"List"}},"com\\zoho\\crm\\api\\record\\DownloadHandler":{"classes":["com\\zoho\\crm\\api\\record\\APIException","com\\zoho\\crm\\api\\record\\FileBodyWrapper"],"interface":true},"com\\zoho\\crm\\api\\attachments\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\attachments\\SuccessResponse","com\\zoho\\crm\\api\\attachments\\APIException"],"interface":true},"com\\zoho\\crm\\api\\notification\\ResponseWrapper":{"watch":{"structure_name":"com\\zoho\\crm\\api\\notification\\Notification","name":"watch","type":"List"},"info":{"structure_name":"com\\zoho\\crm\\api\\notification\\Info","name":"info","type":"com\\zoho\\crm\\api\\notification\\Info"}},"com\\zoho\\crm\\api\\bulkwrite\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\bulkwrite\\APIException","com\\zoho\\crm\\api\\bulkwrite\\FileBodyWrapper"],"interface":true},"com\\zoho\\crm\\api\\bulkwrite\\Result":{"downloadUrl":{"name":"download_url","type":"String"}},"com\\zoho\\crm\\api\\bulkread\\ResponseWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\bulkread\\JobDetail","name":"data","type":"List"}},"com\\zoho\\crm\\api\\file\\FileBodyWrapper":{"file":{"name":"file","type":"com\\zoho\\crm\\api\\util\\StreamWrapper","required":true}},"com\\zoho\\crm\\api\\tags\\APIException":{"code":{"values":["REQUIRED_PARAM_MISSING","MANDATORY_NOT_FOUND","INVALID_MODULE","DUPLICATE_DATA","TAG_ID_NOT_FOUND","FAILURE","INTERNAL_ERROR","NO_PERMISSION","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","LICENSE_LIMIT_EXCEEDED"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"param","type":"String"},{"name":"permissions","type":"List"},{"name":"maximum_length","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["tags not found","special characters found in the given name","One of the expected parameter is missing","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Internal server error occurred.","The relation name given seems to be invalid","duplicate data","tag edition limit exceeded","invalid data","tags not updated successfully"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\record\\LineItemProduct":{"productCode":{"name":"Product_Code","type":"String"},"name":{"name":"name","type":"String"},"currency":{"name":"Currency","type":"String"}},"com\\zoho\\crm\\api\\org\\Org":{"country":{"name":"country","type":"String"},"city":{"name":"city","type":"String"},"companyName":{"name":"company_name","type":"String"},"description":{"name":"description","type":"String"},"gappsEnabled":{"name":"gapps_enabled","type":"Boolean"},"ziaPortalId":{"name":"zia_portal_id","type":"String"},"employeeCount":{"name":"employee_count","type":"String"},"street":{"name":"street","type":"String"},"countryCode":{"name":"country_code","type":"String"},"currencyLocale":{"name":"currency_locale","type":"String"},"alias":{"name":"alias","type":"String"},"currency":{"name":"currency","type":"String"},"id":{"name":"id","type":"Long","primary":true},"state":{"name":"state","type":"String"},"fax":{"name":"fax","type":"String"},"primaryEmail":{"name":"primary_email","type":"String"},"zip":{"name":"zip","type":"String"},"website":{"name":"website","type":"String"},"mobile":{"name":"mobile","type":"String"},"photoId":{"name":"photo_id","type":"String"},"translationEnabled":{"name":"translation_enabled","type":"Boolean"},"currencySymbol":{"name":"currency_symbol","type":"String"},"timeZone":{"name":"time_zone","type":"String"},"privacySettings":{"name":"privacy_settings","type":"Boolean"},"zgid":{"name":"zgid","type":"String"},"licenseDetails":{"structure_name":"com\\zoho\\crm\\api\\org\\LicenseDetails","name":"license_details","type":"com\\zoho\\crm\\api\\org\\LicenseDetails"},"mcStatus":{"name":"mc_status","type":"Boolean"},"primaryZuid":{"name":"primary_zuid","type":"String"},"phone":{"name":"phone","type":"String"},"isoCode":{"name":"iso_code","type":"String"},"domainName":{"name":"domain_name","type":"String"}},"com\\zoho\\crm\\api\\territories\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\territories\\APIException","com\\zoho\\crm\\api\\territories\\ResponseWrapper"],"interface":true},"com\\zoho\\crm\\api\\relatedrecords\\DelinkRecordsParam":{"ids":{"name":"ids","type":"Long","required":true}},"com\\zoho\\crm\\api\\profiles\\GetProfileHeader":{"ifModifiedSince":{"name":"If-Modified-Since","type":"DateTime"}},"com\\zoho\\crm\\api\\tags\\BodyWrapper":{"tags":{"structure_name":"com\\zoho\\crm\\api\\tags\\Tag","name":"tags","type":"List","required":true}},"com\\zoho\\crm\\api\\attachments\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\attachments\\APIException","com\\zoho\\crm\\api\\attachments\\ActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\record\\DeletedRecord":{"createdBy":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_by","type":"com\\zoho\\crm\\api\\users\\User"},"displayName":{"name":"display_name","type":"String"},"id":{"name":"id","type":"Long","primary":true},"type":{"name":"type","type":"String"},"deletedTime":{"name":"deleted_time","type":"DateTime"},"deletedBy":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"deleted_by","type":"com\\zoho\\crm\\api\\users\\User"}},"com\\zoho\\crm\\api\\record\\LeadConverter":{"notifyLeadOwner":{"name":"notify_lead_owner","type":"Boolean"},"notifyNewEntityOwner":{"name":"notify_new_entity_owner","type":"Boolean"},"deals":{"structure_name":"com\\zoho\\crm\\api\\record\\Record","module":"Deals","name":"Deals","type":"com\\zoho\\crm\\api\\record\\Record"},"accounts":{"name":"Accounts","type":"String"},"carryOverTags":{"structure_name":"com\\zoho\\crm\\api\\record\\CarryOverTags","name":"carry_over_tags","type":"com\\zoho\\crm\\api\\record\\CarryOverTags"},"overwrite":{"name":"overwrite","type":"Boolean"},"contacts":{"name":"Contacts","type":"String"},"assignTo":{"name":"assign_to","type":"String"}},"com\\zoho\\crm\\api\\record\\FileBodyWrapper":{"file":{"name":"file","type":"com\\zoho\\crm\\api\\util\\StreamWrapper","required":true}},"com\\zoho\\crm\\api\\tags\\RecordActionWrapper":{"lockedCount":{"name":"locked_count","type":"Integer"},"data":{"structure_name":"com\\zoho\\crm\\api\\tags\\RecordActionResponse","name":"data","type":"List"},"successCount":{"name":"success_count","type":"String"},"wfScheduler":{"name":"wf_scheduler","type":"Boolean"}},"com\\zoho\\crm\\api\\record\\DeletedRecordsWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\record\\DeletedRecord","name":"data","type":"List"},"info":{"structure_name":"com\\zoho\\crm\\api\\record\\Info","name":"info","type":"com\\zoho\\crm\\api\\record\\Info"}},"com\\zoho\\crm\\api\\org\\FileBodyWrapper":{"file":{"name":"file","type":"com\\zoho\\crm\\api\\util\\StreamWrapper","required":true}},"com\\zoho\\crm\\api\\users\\TabTheme":{"background":{"name":"background","type":"String"},"fontColor":{"name":"font_color","type":"String"}},"com\\zoho\\crm\\api\\notes\\Note":{"owner":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Owner","type":"com\\zoho\\crm\\api\\users\\User"},"modifiedTime":{"name":"Modified_Time","type":"DateTime"},"noteTitle":{"name":"Note_Title","type":"String"},"noteContent":{"name":"Note_Content","type":"String","required":true},"attachments":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\attachments\\Attachment","name":"$attachments","type":"List"},"voiceNote":{"name":"$voice_note","type":"Boolean"},"editable":{"name":"$editable","type":"Boolean"},"isSharedToClient":{"name":"$is_shared_to_client","type":"Boolean"},"parentId":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\record\\Record","name":"Parent_Id","type":"com\\zoho\\crm\\api\\record\\Record","required":true},"seModule":{"name":"$se_module","type":"String","required":true},"size":{"name":"$size","type":"String"},"createdBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Created_By","type":"com\\zoho\\crm\\api\\users\\User"},"createdTime":{"name":"Created_Time","type":"DateTime"},"modifiedBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Modified_By","type":"com\\zoho\\crm\\api\\users\\User"},"state":{"name":"$state","type":"String"},"id":{"name":"id","type":"Long","primary":true}},"com\\zoho\\crm\\api\\profiles\\APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INTERNAL_ERROR"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\relatedrecords\\GetRelatedRecordHeader":{"IfModifiedSince":{"name":"If-Modified-Since","type":"DateTime"}},"com\\zoho\\crm\\api\\notes\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"Modified_Time","type":"DateTime"},{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Modified_By","type":"com\\zoho\\crm\\api\\users\\User"},{"name":"Created_Time","type":"DateTime"},{"name":"id","type":"Long"},{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Created_By","type":"com\\zoho\\crm\\api\\users\\User"}],"name":"details","type":"Map"},"message":{"values":["record added","record updated","record deleted"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\tags\\CountWrapper":{"count":{"name":"count","type":"String"}},"com\\zoho\\crm\\api\\notification\\BodyWrapper":{"watch":{"structure_name":"com\\zoho\\crm\\api\\notification\\Notification","name":"watch","max-length":100,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\variables\\Variable":{"apiName":{"required_in_update":false,"name":"api_name","type":"String","primary":true},"variableGroup":{"structure_name":"com\\zoho\\crm\\api\\variablegroups\\VariableGroup","name":"variable_group","type":"com\\zoho\\crm\\api\\variablegroups\\VariableGroup","skip_mandatory":true,"required":true},"name":{"name":"name","type":"String","required":true},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long","primary":true},"type":{"name":"type","type":"String","required":true},"value":{"name":"value","type":"Object"}},"com\\zoho\\crm\\api\\record\\ConvertActionWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\record\\ConvertActionResponse","name":"data","type":"List"}},"com\\zoho\\crm\\api\\blueprint\\BodyWrapper":{"blueprint":{"structure_name":"com\\zoho\\crm\\api\\blueprint\\BluePrint","name":"blueprint","max-length":1,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\roles\\ResponseWrapper":{"roles":{"structure_name":"com\\zoho\\crm\\api\\roles\\Role","name":"roles","type":"List"}},"com\\zoho\\crm\\api\\sharerecords\\APIException":{"code":{"values":["NO_PERMISSION","BAD_REQUEST","INVALID_MODULE","SHARE_LIMIT_EXCEEDED","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","ENTITY_ID_INVALID"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"permissions","type":"List"}],"name":"details","type":"Map"},"message":{"values":["Scheduler is running","cannot share to the user","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Internal server error occurred.","The relation name given seems to be invalid.","invalid oauth scope to access this URL","Please check if the URL trying to access is a correct one.","Permission is invalid","record is already visible to the user.","Cannot share a record to more than 10 users.","No sharing through this record is available to revoke.","ENTITY_ID_INVALID"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\record\\MassUpdateActionResponse":{"classes":["com\\zoho\\crm\\api\\record\\APIException","com\\zoho\\crm\\api\\record\\MassUpdateSuccessResponse"],"interface":true},"com\\zoho\\crm\\api\\file\\ActionWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\file\\ActionResponse","name":"data","type":"List"}},"com\\zoho\\crm\\api\\record\\MassUpdate":{"failedCount":{"name":"Failed_Count","type":"Integer"},"updatedCount":{"name":"Updated_Count","type":"Integer"},"notUpdatedCount":{"name":"Not_Updated_Count","type":"Integer"},"totalCount":{"name":"Total_Count","type":"Integer"},"status":{"values":["COMPLETED","SCHEDULED","RUNNING","FAILED"],"name":"Status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\bulkread\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\bulkread\\ResponseWrapper","com\\zoho\\crm\\api\\bulkread\\APIException","com\\zoho\\crm\\api\\bulkread\\FileBodyWrapper"],"interface":true},"com\\zoho\\crm\\api\\query\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\query\\ResponseWrapper","com\\zoho\\crm\\api\\query\\APIException"],"interface":true},"com\\zoho\\crm\\api\\taxes\\Preference":{"modifyTaxRates":{"name":"modify_tax_rates","type":"Boolean"},"autoPopulateTax":{"name":"auto_populate_tax","type":"Boolean"}},"com\\zoho\\crm\\api\\customviews\\CustomView":{"criteria":{"structure_name":"com\\zoho\\crm\\api\\customviews\\Criteria","name":"criteria","type":"com\\zoho\\crm\\api\\customviews\\Criteria"},"displayValue":{"name":"display_value","type":"String"},"offline":{"name":"offline","type":"Boolean"},"default":{"name":"default","type":"Boolean"},"systemName":{"name":"system_name","type":"String"},"sortOrder":{"name":"sort_order","type":"String"},"sharedDetails":{"structure_name":"com\\zoho\\crm\\api\\customviews\\SharedDetails","name":"shared_details","type":"List"},"name":{"name":"name","type":"String"},"sharedType":{"name":"shared_type","type":"String"},"sortBy":{"name":"sort_by","type":"String"},"id":{"name":"id","type":"Long","primary":true},"category":{"name":"category","type":"String"},"systemDefined":{"name":"system_defined","type":"Boolean"},"fields":{"name":"fields","type":"List"},"favorite":{"name":"favorite","type":"Integer"}},"com\\zoho\\crm\\api\\taxes\\APIException":{"code":{"values":["OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","MANDATORY_NOT_FOUND","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"name","type":"String"},{"name":"value","type":"String"},{"name":"maximum_length","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","required field not found","Sequence number out of range","Sequence number cannot be repeated in same request","Given ID does not exist","tax not deleted"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\bulkwrite\\CallBack":{"method":{"values":["post"],"name":"method","type":"com\\zoho\\crm\\api\\util\\Choice","required":true},"url":{"name":"url","type":"String","required":true}},"com\\zoho\\crm\\api\\record\\DeleteRecordsParam":{"ids":{"name":"ids","type":"Long","required":true},"wfTrigger":{"name":"wf_trigger","type":"String"}},"com\\zoho\\crm\\api\\modules\\RelatedListProperties":{"sortOrder":{"name":"sort_order","type":"String"},"sortBy":{"name":"sort_by","type":"String"},"fields":{"name":"fields","type":"List"}},"com\\zoho\\crm\\api\\taxes\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"name","type":"String"},{"name":"value","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["tax added","record updated","tax deleted"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\sharerecords\\DeleteActionHandler":{"classes":["com\\zoho\\crm\\api\\sharerecords\\APIException","com\\zoho\\crm\\api\\sharerecords\\DeleteActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\roles\\Role":{"displayLabel":{"name":"display_label","type":"String"},"forecastManager":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"forecast_manager","type":"com\\zoho\\crm\\api\\users\\User"},"adminUser":{"name":"admin_user","type":"Boolean"},"shareWithPeers":{"name":"share_with_peers","type":"Boolean"},"name":{"name":"name","type":"String"},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long","primary":true},"reportingTo":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"reporting_to","type":"com\\zoho\\crm\\api\\users\\User"}},"com\\zoho\\crm\\api\\tags\\CountHandler":{"classes":["com\\zoho\\crm\\api\\tags\\APIException","com\\zoho\\crm\\api\\tags\\CountWrapper"],"interface":true},"com\\zoho\\crm\\api\\notes\\GetNotesParam":{"perPage":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"String"}},"com\\zoho\\crm\\api\\relatedrecords\\GetRelatedRecordsHeader":{"IfModifiedSince":{"name":"If-Modified-Since","type":"DateTime"}},"com\\zoho\\crm\\api\\contactroles\\ContactRole":{"sequenceNumber":{"name":"sequence_number","type":"Integer"},"name":{"unique":true,"name":"name","type":"String","required":true},"id":{"name":"id","type":"Long","primary":true}},"com\\zoho\\crm\\api\\variables\\GetVariableForAPINameParam":{"group":{"name":"group","type":"String","required":true}},"com\\zoho\\crm\\api\\record\\ConvertActionHandler":{"classes":["com\\zoho\\crm\\api\\record\\ConvertActionWrapper","com\\zoho\\crm\\api\\record\\APIException"],"interface":true},"com\\zoho\\crm\\api\\bulkwrite\\RequestWrapper":{"resource":{"structure_name":"com\\zoho\\crm\\api\\bulkwrite\\Resource","name":"resource","type":"List","required":true},"callback":{"structure_name":"com\\zoho\\crm\\api\\bulkwrite\\CallBack","name":"callback","type":"com\\zoho\\crm\\api\\bulkwrite\\CallBack"},"characterEncoding":{"name":"character_encoding","type":"String"},"operation":{"values":["insert","update","upsert"],"name":"operation","type":"com\\zoho\\crm\\api\\util\\Choice","required":true}},"com\\zoho\\crm\\api\\notes\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\notes\\APIException","com\\zoho\\crm\\api\\notes\\ResponseWrapper"],"interface":true},"com\\zoho\\crm\\api\\blueprint\\Transition":{"executionTime":{"name":"execution_time","type":"DateTime"},"criteriaMatched":{"name":"criteria_matched","type":"Boolean"},"percentPartialSave":{"name":"percent_partial_save","type":"Float"},"data":{"structure_name":"com\\zoho\\crm\\api\\record\\Record","name":"data","type":"com\\zoho\\crm\\api\\record\\Record","skip_mandatory":true},"nextTransitions":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\blueprint\\NextTransition","name":"next_transitions","type":"List"},"name":{"name":"name","type":"String"},"criteriaMessage":{"name":"criteria_message","type":"String"},"nextFieldValue":{"name":"next_field_value","type":"String"},"id":{"name":"id","type":"Long"},"fields":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\fields\\Field","name":"fields","type":"List"},"type":{"name":"type","type":"String"}},"com\\zoho\\crm\\api\\users\\BodyWrapper":{"users":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"users","max-length":100,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\bulkwrite\\SuccessResponse":{"code":{"values":["FILE_UPLOAD_SUCCESS","SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"file_id","type":"Long"},{"name":"created_time","type":"DateTime"},{"name":"id","type":"Long"},{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_by","type":"com\\zoho\\crm\\api\\users\\User"}],"name":"details","type":"Map"},"message":{"values":["file uploaded.","success"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\record\\LineTax":{"percentage":{"name":"percentage","type":"Float"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"value":{"name":"value","type":"Float"}},"com\\zoho\\crm\\api\\currencies\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\currencies\\ResponseWrapper","com\\zoho\\crm\\api\\currencies\\APIException"],"interface":true},"com\\zoho\\crm\\api\\attachments\\APIException":{"code":{"values":["NO_PERMISSION","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"id","type":"Long"},{"name":"resource_path_index","type":"Integer"},{"name":"related_status","type":"String"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["As it is a linked attachment"," you can not download it","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Attachment link already exists","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\file\\UploadFilesParam":{"type":{"name":"type","type":"String","required":true}},"com\\zoho\\crm\\api\\layouts\\Layout":{"modifiedTime":{"name":"modified_time","type":"DateTime"},"createdFor":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_for","type":"com\\zoho\\crm\\api\\users\\User"},"visible":{"name":"visible","type":"Boolean"},"createdBy":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_by","type":"com\\zoho\\crm\\api\\users\\User"},"name":{"name":"name","type":"String"},"profiles":{"structure_name":"com\\zoho\\crm\\api\\profiles\\Profile","name":"profiles","type":"List"},"createdTime":{"name":"created_time","type":"DateTime"},"modifiedBy":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"modified_by","type":"com\\zoho\\crm\\api\\users\\User"},"id":{"name":"id","type":"Long","primary":true},"sections":{"structure_name":"com\\zoho\\crm\\api\\layouts\\Section","name":"sections","type":"List"},"convertMapping":{"name":"convert_mapping","type":"Map"},"status":{"name":"status","type":"Integer"}},"com\\zoho\\crm\\api\\layouts\\GetLayoutsParam":{"module":{"name":"module","type":"String"}},"com\\zoho\\crm\\api\\blueprint\\APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","RECORD_NOT_IN_PROCESS","INTERNAL_ERROR"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"message","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"info_message","type":"String"},{"name":"parent_api_name","type":"String"},{"structure_name":"com\\zoho\\crm\\api\\blueprint\\ValidationError","name":"validation_error","type":"List"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","invalid transition","invalid data","record not in process","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\sharerecords\\ShareRecord":{"shareRelatedRecords":{"name":"share_related_records","type":"Boolean"},"sharedThrough":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\sharerecords\\SharedThrough","name":"shared_through","type":"com\\zoho\\crm\\api\\sharerecords\\SharedThrough"},"sharedTime":{"name":"shared_time","type":"DateTime"},"sharedBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"shared_by","type":"com\\zoho\\crm\\api\\users\\User"},"permission":{"required_in_update":true,"name":"permission","type":"String","required":true},"user":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","required_in_update":true,"name":"user","type":"com\\zoho\\crm\\api\\users\\User","required":true}},"com\\zoho\\crm\\api\\bulkread\\RequestWrapper":{"query":{"structure_name":"com\\zoho\\crm\\api\\bulkread\\Query","name":"query","type":"com\\zoho\\crm\\api\\bulkread\\Query","required":true},"callback":{"structure_name":"com\\zoho\\crm\\api\\bulkread\\CallBack","name":"callback","type":"com\\zoho\\crm\\api\\bulkread\\CallBack"},"fileType":{"values":["ics","csv"],"name":"file_type","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\sharerecords\\DeleteActionWrapper":{"share":{"structure_name":"com\\zoho\\crm\\api\\sharerecords\\DeleteActionResponse","name":"share","interface":true,"type":"com\\zoho\\crm\\api\\sharerecords\\DeleteActionResponse"}},"com\\zoho\\crm\\api\\currencies\\APIException":{"code":{"values":["OAUTH_SCOPE_MISMATCH","ALREADY_ENABLED","FEATURE_NOT_ENABLED","NOT_ALLOWED","ACTIVE_STATE_LIMIT_EXCEEDED","INTERNAL_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","CURRENCIES_NOT_ENABLED","FEATURE_NOT_SUPPORTED","No Content"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"expected_data_type","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one.","The http request method type is not a valid one","The module name given seems to be invalid","The multi-currency is already enabled","Currency name is invalid.","ISO code is invalid.","Currency symbol is invalid.","The multi-currency feature is not available except the Enterprise and higher editions.","Required field not found.","unable to process your request. please verify whether you have entered proper method name"," parameter and parameter values.","Currency symbol is invalid.","Multi currency is not enabled","No Content","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\taxes\\DeleteTaxesParam":{"ids":{"name":"ids","type":"Long","required":true}},"com\\zoho\\crm\\api\\record\\CarryOverTags":{"deals":{"name":"Deals","type":"List"},"accounts":{"name":"Accounts","type":"List"},"contacts":{"name":"Contacts","type":"List"}},"com\\zoho\\crm\\api\\bulkwrite\\ResponseWrapper":{"classes":["com\\zoho\\crm\\api\\bulkwrite\\APIException","com\\zoho\\crm\\api\\bulkwrite\\BulkWriteResponse"],"interface":true},"com\\zoho\\crm\\api\\taxes\\BodyWrapper":{"taxes":{"structure_name":"com\\zoho\\crm\\api\\taxes\\Tax","name":"taxes","max-length":100,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\record\\Participants":{"name":{"name":"name","type":"String"},"invited":{"name":"invited","type":"Boolean"},"type":{"name":"type","type":"String","required":true},"email":{"name":"Email","type":"String"},"participant":{"name":"participant","type":"String","required":true},"status":{"name":"status","type":"String"}},"com\\zoho\\crm\\api\\taxes\\ActionWrapper":{"taxes":{"structure_name":"com\\zoho\\crm\\api\\taxes\\ActionResponse","name":"taxes","type":"List"}},"com\\zoho\\crm\\api\\variables\\GetVariablesParam":{"group":{"name":"group","type":"String","required":true}},"com\\zoho\\crm\\api\\tags\\Info":{"count":{"name":"count","type":"Integer"},"allowedCount":{"name":"allowed_count","type":"Integer"}},"com\\zoho\\crm\\api\\record\\Criteria":{"comparator":{"values":["equal","not_equal","in","not_in","less_than","less_equal","greater_than","greater_equal","contains","not_contains","starts_with","ends_with","between","not_between"],"name":"comparator","type":"com\\zoho\\crm\\api\\util\\Choice"},"groupOperator":{"values":["and","or"],"name":"group_operator","type":"com\\zoho\\crm\\api\\util\\Choice"},"field":{"name":"field","type":"String"},"value":{"name":"value","type":"Object"},"group":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\record\\Criteria","name":"group","type":"List"}},"com\\zoho\\crm\\api\\variables\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\variables\\APIException","com\\zoho\\crm\\api\\variables\\SuccessResponse"],"interface":true},"com\\zoho\\crm\\api\\notes\\ActionWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\notes\\ActionResponse","name":"data","type":"List"}},"com\\zoho\\crm\\api\\blueprint\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\blueprint\\SuccessResponse","com\\zoho\\crm\\api\\blueprint\\APIException"],"interface":true},"com\\zoho\\crm\\api\\modules\\Argument":{"name":{"name":"name","type":"String"},"value":{"name":"value","type":"String"}},"com\\zoho\\crm\\api\\contactroles\\APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"limit","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","the module name given seems to be invalid","duplicate data","Contact Role feature limit exceeded","required field not found","invalid data","contact role not deleted","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\file\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\file\\ActionWrapper","com\\zoho\\crm\\api\\file\\APIException"],"interface":true},"com\\zoho\\crm\\api\\record\\APIException":{"code":{"values":["FEATURE_NOT_SUPPORTED","CONVERTED_RECORD","NOT_FOUND","NO_RECORDS_FOUND","NOT_APPROVED","LIMIT_EXCEEDED","ALREADY_SCHEDULED","CANNOT_PERFORM_ACTION","CANNOT_PROCESS","INTERNAL_ERROR","INVALID_TOKEN","INVALID_DATA","MANDATORY_NOT_FOUND","NO_PERMISSION","INVALID_MODULE","NOT_SUPPORTED","PATTERN_NOT_MATCHED","OAUTH_SCOPE_MISMATCH","DUPLICATE_DATA","INVALID_QUERY","MAPPING_MISMATCH","ID_ALREADY_CONVERTED","FILE_SIZE_MORE_THAN_ALLOWED_SIZE","RECORD_IN_BLUEPRINT","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","CANNOT_DELETE","REQUIRED_PARAM_MISSING","DATA_MISMATCH","RECORD_LOCKED"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"param_name","type":"String"},{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"module","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"index","type":"Integer"},{"name":"maximum_length","type":"String"},{"name":"mapped_field","type":"String"},{"name":"reason","type":"String"},{"name":"operator","type":"String"},{"name":"allowed_count","type":"Integer"},{"name":"limit","type":"Integer"},{"name":"json_path","type":"String"},{"name":"parent_api_name","type":"String"},{"name":"param","type":"String"}],"name":"details","type":"Map"},"message":{"values":["the id given seems to be invalid.","Already an Mass Action scheduler is runing for the given cvid","Scheduled Mass Operation feature is not available in your edition","can't update the converted record","Field cannot be updated in Scheduled Mass Update","Field is not visible","Field cannot be updated as it is associated with a validation rule.","Field cannot be updated as it is associated with a layout rule.This field cannot be updated in the Mass Update","Max field limit exceeded","Maximum lookup field limit in criteria exceeded","No field found","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","Territory is not supported for the given module","Please check whether the input values are correct","invalid data","permission denied","Internal server error occurred.","duplicate data","required field not found","Layout doesn't contain the Pipeline","Pipeline doesn't contain the Stage","the id given seems to be invalid","record not deleted","record not deletable","Authentication failed","One of the expected parameter is missing","mandatory param missing","invalid query formed","id already converted","body","given id is invalid","Already a Mass Action scheduler is running for the given cvid","The record is in stop processing","The record is in blue print","no permission to perform an action on this record","Record count exceeded","record not approved","no record found to update","Field Edit Permission not given","Customview not accessible","Empty response","give contact id is mismatched with the data","give account id is mismatched with the data"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\fields\\APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","INTERNAL_ERROR","REQUIRED_PARAM_MISSING"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"param","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","the given module is not supported for this api","Internal server error occurred.","the module name given seems to be invalid"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\bulkwrite\\Resource":{"file":{"structure_name":"com\\zoho\\crm\\api\\bulkwrite\\File","name":"file","type":"com\\zoho\\crm\\api\\bulkwrite\\File"},"module":{"name":"module","type":"String","required":true},"ignoreEmpty":{"name":"ignore_empty","type":"Boolean"},"findBy":{"name":"find_by","type":"String"},"fieldMappings":{"structure_name":"com\\zoho\\crm\\api\\bulkwrite\\FieldMapping","name":"field_mappings","type":"List"},"type":{"values":["data"],"name":"type","type":"com\\zoho\\crm\\api\\util\\Choice","required":true},"status":{"values":["ADDED","IN PROGRESS","COMPLETED","SKIPPED","FAILED"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"},"fileId":{"name":"file_id","type":"String","required":true}},"com\\zoho\\crm\\api\\contactroles\\ActionWrapper":{"contactRoles":{"structure_name":"com\\zoho\\crm\\api\\contactroles\\ActionResponse","name":"contact_roles","type":"List"}},"com\\zoho\\crm\\api\\customviews\\Translation":{"createdByMe":{"name":"created_by_me","type":"String"},"otherUsersViews":{"name":"other_users_views","type":"String"},"publicViews":{"name":"public_views","type":"String"},"sharedWithMe":{"name":"shared_with_me","type":"String"}},"com\\zoho\\crm\\api\\record\\SuccessfulConvert":{"deals":{"name":"Deals","type":"String"},"accounts":{"name":"Accounts","type":"String"},"contacts":{"name":"Contacts","type":"String"}},"com\\zoho\\crm\\api\\sharerecords\\BodyWrapper":{"share":{"structure_name":"com\\zoho\\crm\\api\\sharerecords\\ShareRecord","name":"share","max-length":10,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\blueprint\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\blueprint\\ResponseWrapper","com\\zoho\\crm\\api\\blueprint\\APIException"],"interface":true},"com\\zoho\\crm\\api\\fields\\GetFieldParam":{"module":{"name":"module","type":"String"}},"com\\zoho\\crm\\api\\roles\\APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Internal server error occurred.","The relation name given seems to be invalid"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\taxes\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\taxes\\APIException","com\\zoho\\crm\\api\\taxes\\ResponseWrapper"],"interface":true},"com\\zoho\\crm\\api\\sharerecords\\DeleteActionResponse":{"classes":["com\\zoho\\crm\\api\\sharerecords\\SuccessResponse","com\\zoho\\crm\\api\\sharerecords\\APIException"],"interface":true},"com\\zoho\\crm\\api\\record\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\record\\ResponseWrapper","com\\zoho\\crm\\api\\record\\APIException","com\\zoho\\crm\\api\\record\\FileBodyWrapper"],"interface":true},"com\\zoho\\crm\\api\\query\\BodyWrapper":{"selectQuery":{"name":"select_query","type":"String","required":true}},"com\\zoho\\crm\\api\\notes\\GetNotesHeader":{"IfModifiedSince":{"name":"If-Modified-Since","type":"DateTime","required":true}},"com\\zoho\\crm\\api\\record\\PricingDetails":{"discount":{"name":"discount","type":"Float","required":true},"toRange":{"name":"to_range","type":"Float","required":true},"fromRange":{"name":"from_range","type":"Float","required":true}},"com\\zoho\\crm\\api\\notification\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\notification\\APIException","com\\zoho\\crm\\api\\notification\\ActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\contactroles\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\contactroles\\ResponseWrapper","com\\zoho\\crm\\api\\contactroles\\APIException"],"interface":true},"com\\zoho\\crm\\api\\taxes\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\taxes\\SuccessResponse","com\\zoho\\crm\\api\\taxes\\APIException"],"interface":true},"com\\zoho\\crm\\api\\query\\APIException":{"code":{"values":["INVALID_QUERY","OAUTH_SCOPE_MISMATCH","SYNTAX_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"near","type":"String"},{"name":"column","type":"Integer"},{"name":"line","type":"Integer"},{"name":"clause","type":"String"},{"name":"by","type":"String"},{"name":"limit","type":"Integer"},{"name":"column_name","type":"String"},{"name":"reason","type":"String"},{"name":"module","type":"String"},{"name":"data_type","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"operator","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid query formed","value given seems to be invalid for the column","data type not supported","column given seems to be invalid","invalid oauth scope to access this URL","limit exceeded","given coql query not supported","select columns limit exceeded","join limit exceeded","missing clause","error occured while parsing the query","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","the module name given seems to be invalid","duplicate data","required field not found","invalid data","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\record\\DeletedRecordsHandler":{"classes":["com\\zoho\\crm\\api\\record\\APIException","com\\zoho\\crm\\api\\record\\DeletedRecordsWrapper"],"interface":true},"com\\zoho\\crm\\api\\fields\\Formula":{"expression":{"name":"expression","type":"String"},"returnType":{"name":"return_type","type":"String"}},"com\\zoho\\crm\\api\\bulkwrite\\BulkWriteResponse":{"result":{"structure_name":"com\\zoho\\crm\\api\\bulkwrite\\Result","name":"result","type":"com\\zoho\\crm\\api\\bulkwrite\\Result"},"resource":{"structure_name":"com\\zoho\\crm\\api\\bulkwrite\\Resource","name":"resource","type":"List"},"createdBy":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_by","type":"com\\zoho\\crm\\api\\users\\User"},"callback":{"structure_name":"com\\zoho\\crm\\api\\bulkwrite\\CallBack","name":"callback","type":"com\\zoho\\crm\\api\\bulkwrite\\CallBack"},"createdTime":{"name":"created_time","type":"DateTime"},"id":{"name":"id","type":"Long"},"characterEncoding":{"name":"character_encoding","type":"String"},"operation":{"name":"operation","type":"String"},"status":{"name":"status","type":"String"}},"com\\zoho\\crm\\api\\fields\\ViewType":{"view":{"name":"view","type":"Boolean"},"edit":{"name":"edit","type":"Boolean"},"quickCreate":{"name":"quick_create","type":"Boolean"},"create":{"name":"create","type":"Boolean"}},"com\\zoho\\crm\\api\\attachments\\Attachment":{"owner":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Owner","type":"com\\zoho\\crm\\api\\users\\User"},"modifiedTime":{"name":"Modified_Time","type":"DateTime"},"fileName":{"name":"File_Name","type":"String"},"editable":{"name":"$editable","type":"Boolean"},"description":{"name":"description","type":"String"},"type":{"name":"$type","type":"String"},"parentId":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\record\\Record","name":"Parent_Id","type":"com\\zoho\\crm\\api\\record\\Record"},"seModule":{"name":"$se_module","type":"String"},"size":{"name":"Size","type":"Long"},"createdBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Created_By","type":"com\\zoho\\crm\\api\\users\\User"},"linkUrl":{"name":"$link_url","type":"String"},"createdTime":{"name":"Created_Time","type":"DateTime"},"modifiedBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Modified_By","type":"com\\zoho\\crm\\api\\users\\User"},"state":{"name":"$state","type":"String"},"id":{"name":"id","type":"Long","primary":true},"category":{"name":"category","type":"String"},"fileId":{"name":"$file_id","type":"String"}},"com\\zoho\\crm\\api\\relatedlists\\GetRelatedListParam":{"module":{"name":"module","type":"String"}},"com\\zoho\\crm\\api\\relatedrecords\\BodyWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\record\\Record","name":"data","max-length":100,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\variables\\DeleteVariablesParam":{"ids":{"name":"ids","type":"Long","required":true}},"com\\zoho\\crm\\api\\sharerecords\\ActionWrapper":{"share":{"structure_name":"com\\zoho\\crm\\api\\sharerecords\\ActionResponse","name":"share","type":"List"}},"com\\zoho\\crm\\api\\notification\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\notification\\SuccessResponse","com\\zoho\\crm\\api\\notification\\APIException"],"interface":true},"com\\zoho\\crm\\api\\profiles\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\profiles\\APIException","com\\zoho\\crm\\api\\profiles\\ResponseWrapper"],"interface":true},"com\\zoho\\crm\\api\\profiles\\PermissionDetail":{"displayLabel":{"name":"display_label","type":"String"},"module":{"name":"module","type":"String"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"enabled":{"name":"enabled","type":"Boolean"}},"com\\zoho\\crm\\api\\bulkread\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\bulkread\\SuccessResponse","com\\zoho\\crm\\api\\bulkread\\APIException"],"interface":true},"com\\zoho\\crm\\api\\tags\\Tag":{"modifiedTime":{"name":"modified_time","type":"DateTime"},"createdBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_by","type":"com\\zoho\\crm\\api\\users\\User"},"name":{"required_in_update":true,"name":"name","type":"String","required":true},"createdTime":{"name":"created_time","type":"DateTime"},"modifiedBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"modified_by","type":"com\\zoho\\crm\\api\\users\\User"},"id":{"name":"id","type":"Long","primary":true}},"com\\zoho\\crm\\api\\currencies\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\currencies\\ActionWrapper","com\\zoho\\crm\\api\\currencies\\APIException"],"interface":true},"com\\zoho\\crm\\api\\notification\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\notification\\APIException","com\\zoho\\crm\\api\\notification\\ResponseWrapper"],"interface":true},"com\\zoho\\crm\\api\\layouts\\GetLayoutParam":{"module":{"name":"module","type":"String"}},"com\\zoho\\crm\\api\\currencies\\BaseCurrencyActionHandler":{"classes":["com\\zoho\\crm\\api\\currencies\\APIException","com\\zoho\\crm\\api\\currencies\\BaseCurrencyActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\fields\\Crypt":{"mode":{"name":"mode","type":"String"},"column":{"name":"column","type":"String"},"encfldids":{"name":"encFldIds","type":"List"},"notify":{"name":"notify","type":"String"},"table":{"name":"table","type":"String"},"status":{"name":"status","type":"Integer"}},"com\\zoho\\crm\\api\\attachments\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["attachment uploaded successfully"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\attachments\\GetAttachmentsParam":{"perPage":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"String"}},"com\\zoho\\crm\\api\\users\\User":{"country":{"name":"country","type":"String"},"lastName":{"name":"last_name","type":"String","required":true},"role":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\roles\\Role","name":"role","type":"com\\zoho\\crm\\api\\roles\\Role","required":true},"decimalSeparator":{"name":"decimal_separator","type":"String"},"signature":{"name":"signature","type":"String"},"city":{"name":"city","type":"String"},"dateFormat":{"name":"date_format","type":"String"},"language":{"name":"language","type":"String"},"countryLocale":{"name":"country_locale","type":"String"},"locale":{"name":"locale","type":"String"},"microsoft":{"name":"microsoft","type":"Boolean"},"isonline":{"name":"Isonline","type":"Boolean"},"nameFormat":{"name":"name_format","type":"String"},"street":{"name":"street","type":"String"},"alias":{"name":"alias","type":"String"},"currency":{"name":"Currency","type":"String"},"theme":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\Theme","name":"theme","type":"com\\zoho\\crm\\api\\users\\Theme"},"personalAccount":{"name":"personal_account","type":"Boolean"},"state":{"name":"state","type":"String"},"fax":{"name":"fax","type":"String"},"email":{"name":"email","type":"String","required":true},"reportingTo":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Reporting_To","type":"com\\zoho\\crm\\api\\users\\User"},"zip":{"name":"zip","type":"String"},"website":{"name":"website","type":"String"},"offset":{"name":"offset","type":"Long"},"profile":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\profiles\\Profile","name":"profile","type":"com\\zoho\\crm\\api\\profiles\\Profile","required":true},"mobile":{"name":"mobile","type":"String"},"timeZone":{"name":"time_zone","type":"String"},"fullName":{"name":"full_name","type":"String"},"customizeInfo":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\CustomizeInfo","name":"customize_info","type":"com\\zoho\\crm\\api\\users\\CustomizeInfo"},"zuid":{"name":"zuid","type":"String"},"confirm":{"name":"confirm","type":"Boolean"},"firstName":{"name":"first_name","type":"String"},"territories":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\Territory","name":"territories","type":"List"},"phone":{"name":"phone","type":"String"},"dob":{"name":"dob","type":"String"},"timeFormat":{"name":"time_format","type":"String"},"name":{"name":"name","type":"String"},"defaultTabGroup":{"name":"default_tab_group","type":"String"},"status":{"name":"status","type":"String"}},"com\\zoho\\crm\\api\\tags\\ActionWrapper":{"tags":{"structure_name":"com\\zoho\\crm\\api\\tags\\ActionResponse","name":"tags","type":"List"}},"com\\zoho\\crm\\api\\record\\MassUpdateResponseHandler":{"classes":["com\\zoho\\crm\\api\\record\\APIException","com\\zoho\\crm\\api\\record\\MassUpdateResponseWrapper"],"interface":true},"com\\zoho\\crm\\api\\notification\\Info":{"perPage":{"name":"per_page","type":"Integer"},"moreRecords":{"name":"more_records","type":"Boolean"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"}},"com\\zoho\\crm\\api\\record\\MassUpdateActionHandler":{"classes":["com\\zoho\\crm\\api\\record\\APIException","com\\zoho\\crm\\api\\record\\MassUpdateActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\record\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\record\\APIException","com\\zoho\\crm\\api\\record\\ActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\sharerecords\\SharedThrough":{"entityName":{"name":"entity_name","type":"String"},"module":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\modules\\Module","name":"module","type":"com\\zoho\\crm\\api\\modules\\Module"},"id":{"name":"id","type":"Long"}},"com\\zoho\\crm\\api\\modules\\ResponseWrapper":{"modules":{"structure_name":"com\\zoho\\crm\\api\\modules\\Module","name":"modules","type":"List"}},"com\\zoho\\crm\\api\\profiles\\Section":{"name":{"name":"name","type":"String"},"categories":{"structure_name":"com\\zoho\\crm\\api\\profiles\\Category","name":"categories","type":"List"}},"com\\zoho\\crm\\api\\bulkread\\JobDetail":{"result":{"structure_name":"com\\zoho\\crm\\api\\bulkread\\Result","name":"result","type":"com\\zoho\\crm\\api\\bulkread\\Result"},"createdBy":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_by","type":"com\\zoho\\crm\\api\\users\\User"},"query":{"structure_name":"com\\zoho\\crm\\api\\bulkread\\Query","name":"query","type":"com\\zoho\\crm\\api\\bulkread\\Query"},"createdTime":{"name":"created_time","type":"DateTime"},"id":{"name":"id","type":"Long","primary":true},"state":{"values":["COMPLETED","IN PROGRESS","ADDED","FAILURE"],"name":"state","type":"com\\zoho\\crm\\api\\util\\Choice"},"operation":{"name":"operation","type":"String"},"fileType":{"name":"file_type","type":"String"}},"com\\zoho\\crm\\api\\modules\\APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INTERNAL_ERROR","INVALID_MODULE","INVALID_DATA","LIMIT_EXCEEDED","DUPLICATE_DATA","NOT_ALLOWED","NO_PERMISSION"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"limit","type":"Integer"},{"name":"maximum_length","type":"Integer"},{"name":"permissions","type":"List"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","the given module is not supported in api","invalid data","Api name duplicate","Api name is not valid","System keyword not allowed in api name","Api name update not allowed","No permission to update API name","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\record\\GetDeletedRecordsHeader":{"IfModifiedSince":{"name":"If-Modified-Since","type":"DateTime"}},"com\\zoho\\crm\\api\\sharerecords\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\sharerecords\\APIException","com\\zoho\\crm\\api\\sharerecords\\ResponseWrapper"],"interface":true},"com\\zoho\\crm\\api\\record\\MassUpdateResponse":{"classes":["com\\zoho\\crm\\api\\record\\APIException","com\\zoho\\crm\\api\\record\\MassUpdate"],"interface":true},"com\\zoho\\crm\\api\\users\\ActionWrapper":{"users":{"structure_name":"com\\zoho\\crm\\api\\users\\ActionResponse","name":"users","type":"List"}},"com\\zoho\\crm\\api\\attachments\\ResponseWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\attachments\\Attachment","name":"data","type":"List"},"info":{"structure_name":"com\\zoho\\crm\\api\\record\\Info","name":"info","type":"com\\zoho\\crm\\api\\record\\Info"}},"com\\zoho\\crm\\api\\record\\GetRecordParam":{"cvid":{"name":"cvid","type":"String"},"uid":{"name":"uid","type":"String"},"approved":{"name":"approved","type":"String"},"startDateTime":{"name":"startDateTime","type":"DateTime"},"converted":{"name":"converted","type":"String"},"territoryId":{"name":"territory_id","type":"String"},"fields":{"name":"fields","type":"String"},"endDateTime":{"name":"endDateTime","type":"DateTime"},"includeChild":{"name":"include_child","type":"String"}},"com\\zoho\\crm\\api\\bulkread\\Query":{"cvid":{"name":"cvid","type":"String"},"criteria":{"structure_name":"com\\zoho\\crm\\api\\bulkread\\Criteria","name":"criteria","type":"com\\zoho\\crm\\api\\bulkread\\Criteria"},"module":{"name":"module","type":"String","required":true},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"List"}},"com\\zoho\\crm\\api\\record\\FileHandler":{"classes":["com\\zoho\\crm\\api\\record\\SuccessResponse","com\\zoho\\crm\\api\\record\\APIException"],"interface":true},"com\\zoho\\crm\\api\\bulkread\\Criteria":{"groupOperator":{"values":["and","or"],"name":"group_operator","type":"com\\zoho\\crm\\api\\util\\Choice"},"comparator":{"values":["equal","not_equal","in","not_in","less_than","less_equal","greater_than","greater_equal","contains","not_contains","starts_with","ends_with","between","not_between"],"name":"comparator","type":"com\\zoho\\crm\\api\\util\\Choice"},"apiName":{"name":"api_name","type":"String"},"value":{"name":"value","type":"Object"},"group":{"structure_name":"com\\zoho\\crm\\api\\bulkread\\Criteria","name":"group","type":"List"}},"com\\zoho\\crm\\api\\modules\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\modules\\APIException","com\\zoho\\crm\\api\\modules\\SuccessResponse"],"interface":true},"com\\zoho\\crm\\api\\users\\GetUsersParam":{"perPage":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"type":{"name":"type","type":"String","required":true}},"com\\zoho\\crm\\api\\tags\\RecordActionResponse":{"classes":["com\\zoho\\crm\\api\\tags\\SuccessResponse","com\\zoho\\crm\\api\\tags\\APIException"],"interface":true},"com\\zoho\\crm\\api\\tags\\AddTagsToRecordParam":{"tagNames":{"name":"tag_names","type":"String","required":true},"overWrite":{"name":"over_write","type":"String"}},"com\\zoho\\crm\\api\\record\\MassUpdateSuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"job_id","type":"String"},{"name":"id","type":"Long"},{"name":"Modified_Time","type":"DateTime"},{"name":"Created_Time","type":"DateTime"},{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Modified_By","type":"com\\zoho\\crm\\api\\users\\User"},{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Created_By","type":"com\\zoho\\crm\\api\\users\\User"}],"name":"details","type":"Map"},"message":{"values":["record updated","mass update scheduled successfully"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\relatedrecords\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["relation added","relation removed"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\users\\Info":{"perPage":{"name":"per_page","type":"Integer"},"moreRecords":{"name":"more_records","type":"Boolean"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"}},"com\\zoho\\crm\\api\\currencies\\Currency":{"symbol":{"name":"symbol","type":"String","required":true},"modifiedTime":{"name":"modified_time","type":"DateTime"},"format":{"structure_name":"com\\zoho\\crm\\api\\currencies\\Format","name":"format","type":"com\\zoho\\crm\\api\\currencies\\Format","required":true},"isActive":{"name":"is_active","type":"Boolean"},"exchangeRate":{"name":"exchange_rate","type":"String","required":true},"createdBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_by","type":"com\\zoho\\crm\\api\\users\\User"},"isoCode":{"name":"iso_code","type":"String","required":true},"name":{"name":"name","type":"String","required":true},"createdTime":{"name":"created_time","type":"DateTime"},"prefixSymbol":{"name":"prefix_symbol","type":"Boolean"},"modifiedBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"modified_by","type":"com\\zoho\\crm\\api\\users\\User"},"isBase":{"name":"is_base","type":"Boolean"},"id":{"name":"id","type":"Long","primary":true}},"com\\zoho\\crm\\api\\variables\\GetVariableByIDParam":{"group":{"name":"group","type":"String","required":true}},"com\\zoho\\crm\\api\\notes\\BodyWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\notes\\Note","name":"data","max-length":100,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\file\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\file\\APIException","com\\zoho\\crm\\api\\file\\FileBodyWrapper"],"interface":true},"com\\zoho\\crm\\api\\tags\\ResponseWrapper":{"tags":{"structure_name":"com\\zoho\\crm\\api\\tags\\Tag","name":"tags","type":"List"},"info":{"structure_name":"com\\zoho\\crm\\api\\tags\\Info","name":"info","type":"com\\zoho\\crm\\api\\tags\\Info"}},"com\\zoho\\crm\\api\\tags\\UpdateTagsParam":{"module":{"name":"module","type":"String","required":true}},"com\\zoho\\crm\\api\\contactroles\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\contactroles\\APIException","com\\zoho\\crm\\api\\contactroles\\ActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\fields\\LookupField":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com\\zoho\\crm\\api\\record\\GetMassUpdateStatusParam":{"jobId":{"name":"job_id","type":"String"}},"com\\zoho\\crm\\api\\relatedrecords\\APIException":{"code":{"values":["NO_PERMISSION","CANNOT_BE_UPDATED","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"id","type":"Long"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid data","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Internal server error occurred.","The relation name given seems to be invalid"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\bulkread\\ActionWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\bulkread\\ActionResponse","name":"data","type":"List"},"info":{"name":"info","type":"Map"}},"com\\zoho\\crm\\api\\tags\\UpdateTagParam":{"module":{"name":"module","type":"String","required":true}},"com\\zoho\\crm\\api\\record\\GetRecordHeader":{"IfModifiedSince":{"name":"If-Modified-Since","type":"DateTime"}},"com\\zoho\\crm\\api\\currencies\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["The multi-currency feature is enabled and given currency is created as the base currency.","The currency created successfully.","The currency updated successfully"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\variablegroups\\ResponseWrapper":{"variableGroups":{"structure_name":"com\\zoho\\crm\\api\\variablegroups\\VariableGroup","name":"variable_groups","type":"List"}},"com\\zoho\\crm\\api\\tags\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\tags\\SuccessResponse","com\\zoho\\crm\\api\\tags\\APIException"],"interface":true},"com\\zoho\\crm\\api\\org\\LicenseDetails":{"paidType":{"name":"paid_type","type":"String"},"trialType":{"name":"trial_type","type":"String"},"paidExpiry":{"name":"paid_expiry","type":"DateTime"},"paid":{"name":"paid","type":"Boolean"},"usersLicensePurchased":{"name":"users_license_purchased","type":"Long"},"trialExpiry":{"name":"trial_expiry","type":"String"}},"com\\zoho\\crm\\api\\blueprint\\ProcessInfo":{"apiName":{"name":"api_name","type":"String"},"fieldName":{"name":"field_name","type":"String"},"escalation":{"name":"escalation","type":"String"},"continuous":{"name":"continuous","type":"Boolean"},"fieldLabel":{"name":"field_label","type":"String"},"name":{"name":"name","type":"String"},"isContinuous":{"name":"is_continuous","type":"Boolean"},"id":{"name":"id","type":"Long"},"fieldValue":{"name":"field_value","type":"String"},"fieldId":{"name":"field_id","type":"String"},"columnName":{"name":"column_name","type":"String"}},"com\\zoho\\crm\\api\\bulkread\\Result":{"perPage":{"name":"per_page","type":"Integer"},"moreRecords":{"name":"more_records","type":"Boolean"},"count":{"name":"count","type":"Integer"},"downloadUrl":{"name":"download_url","type":"String"},"page":{"name":"page","type":"Integer"}},"com\\zoho\\crm\\api\\users\\GetUsersHeader":{"IfModifiedSince":{"name":"If-Modified-Since","type":"DateTime"}},"com\\zoho\\crm\\api\\customviews\\ResponseWrapper":{"customViews":{"structure_name":"com\\zoho\\crm\\api\\customviews\\CustomView","name":"custom_views","type":"List"},"info":{"structure_name":"com\\zoho\\crm\\api\\customviews\\Info","name":"info","type":"com\\zoho\\crm\\api\\customviews\\Info"}},"com\\zoho\\crm\\api\\profiles\\ResponseWrapper":{"profiles":{"structure_name":"com\\zoho\\crm\\api\\profiles\\Profile","name":"profiles","type":"List"}},"com\\zoho\\crm\\api\\modules\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"api_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["module updated successfully"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\taxes\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\taxes\\ActionWrapper","com\\zoho\\crm\\api\\taxes\\APIException"],"interface":true},"com\\zoho\\crm\\api\\fields\\Currency":{"roundingOption":{"name":"rounding_option","type":"String"},"precision":{"name":"precision","type":"Integer"}},"com\\zoho\\crm\\api\\modules\\Territory":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"subordinates":{"name":"subordinates","type":"Boolean"}},"com\\zoho\\crm\\api\\tags\\RecordActionHandler":{"classes":["com\\zoho\\crm\\api\\tags\\APIException","com\\zoho\\crm\\api\\tags\\RecordActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\notes\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\notes\\ActionWrapper","com\\zoho\\crm\\api\\notes\\APIException"],"interface":true},"com\\zoho\\crm\\api\\users\\CustomizeInfo":{"bcView":{"name":"bc_view","type":"String"},"showDetailView":{"name":"show_detail_view","type":"Boolean"},"showHome":{"name":"show_home","type":"Boolean"},"showRightPanel":{"name":"show_right_panel","type":"String"},"notesDesc":{"name":"notes_desc","type":"Boolean"},"unpinRecentItem":{"name":"unpin_recent_item","type":"String"}},"com\\zoho\\crm\\api\\util\\Model":{"classes":["com\\zoho\\crm\\api\\attachments\\SuccessResponse","com\\zoho\\crm\\api\\attachments\\APIException","com\\zoho\\crm\\api\\attachments\\Attachment","com\\zoho\\crm\\api\\attachments\\ActionWrapper","com\\zoho\\crm\\api\\attachments\\ResponseWrapper","com\\zoho\\crm\\api\\attachments\\FileBodyWrapper","com\\zoho\\crm\\api\\notes\\ActionWrapper","com\\zoho\\crm\\api\\notes\\SuccessResponse","com\\zoho\\crm\\api\\notes\\BodyWrapper","com\\zoho\\crm\\api\\notes\\APIException","com\\zoho\\crm\\api\\notes\\Info","com\\zoho\\crm\\api\\notes\\ResponseWrapper","com\\zoho\\crm\\api\\notes\\Note","com\\zoho\\crm\\api\\roles\\Role","com\\zoho\\crm\\api\\roles\\APIException","com\\zoho\\crm\\api\\roles\\ResponseWrapper","com\\zoho\\crm\\api\\relatedlists\\ResponseWrapper","com\\zoho\\crm\\api\\relatedlists\\RelatedList","com\\zoho\\crm\\api\\relatedlists\\APIException","com\\zoho\\crm\\api\\taxes\\Preference","com\\zoho\\crm\\api\\taxes\\ActionWrapper","com\\zoho\\crm\\api\\taxes\\SuccessResponse","com\\zoho\\crm\\api\\taxes\\APIException","com\\zoho\\crm\\api\\taxes\\ResponseWrapper","com\\zoho\\crm\\api\\taxes\\BodyWrapper","com\\zoho\\crm\\api\\taxes\\Tax","com\\zoho\\crm\\api\\layouts\\ResponseWrapper","com\\zoho\\crm\\api\\layouts\\Section","com\\zoho\\crm\\api\\layouts\\APIException","com\\zoho\\crm\\api\\layouts\\Layout","com\\zoho\\crm\\api\\layouts\\Properties","com\\zoho\\crm\\api\\bulkwrite\\CallBack","com\\zoho\\crm\\api\\bulkwrite\\SuccessResponse","com\\zoho\\crm\\api\\bulkwrite\\RequestWrapper","com\\zoho\\crm\\api\\bulkwrite\\APIException","com\\zoho\\crm\\api\\bulkwrite\\BulkWriteResponse","com\\zoho\\crm\\api\\bulkwrite\\File","com\\zoho\\crm\\api\\bulkwrite\\Resource","com\\zoho\\crm\\api\\bulkwrite\\FieldMapping","com\\zoho\\crm\\api\\bulkwrite\\FileBodyWrapper","com\\zoho\\crm\\api\\bulkwrite\\Result","com\\zoho\\crm\\api\\customviews\\SharedDetails","com\\zoho\\crm\\api\\customviews\\Translation","com\\zoho\\crm\\api\\customviews\\ResponseWrapper","com\\zoho\\crm\\api\\customviews\\Info","com\\zoho\\crm\\api\\customviews\\CustomView","com\\zoho\\crm\\api\\customviews\\Criteria","com\\zoho\\crm\\api\\customviews\\Range","com\\zoho\\crm\\api\\customviews\\APIException","com\\zoho\\crm\\api\\notification\\SuccessResponse","com\\zoho\\crm\\api\\notification\\Info","com\\zoho\\crm\\api\\notification\\BodyWrapper","com\\zoho\\crm\\api\\notification\\APIException","com\\zoho\\crm\\api\\notification\\ActionWrapper","com\\zoho\\crm\\api\\notification\\ResponseWrapper","com\\zoho\\crm\\api\\notification\\Notification","com\\zoho\\crm\\api\\blueprint\\Transition","com\\zoho\\crm\\api\\blueprint\\BluePrint","com\\zoho\\crm\\api\\blueprint\\SuccessResponse","com\\zoho\\crm\\api\\blueprint\\BodyWrapper","com\\zoho\\crm\\api\\blueprint\\NextTransition","com\\zoho\\crm\\api\\blueprint\\ProcessInfo","com\\zoho\\crm\\api\\blueprint\\ResponseWrapper","com\\zoho\\crm\\api\\blueprint\\APIException","com\\zoho\\crm\\api\\blueprint\\ValidationError","com\\zoho\\crm\\api\\file\\BodyWrapper","com\\zoho\\crm\\api\\file\\SuccessResponse","com\\zoho\\crm\\api\\file\\ActionWrapper","com\\zoho\\crm\\api\\file\\APIException","com\\zoho\\crm\\api\\file\\FileBodyWrapper","com\\zoho\\crm\\api\\record\\ResponseWrapper","com\\zoho\\crm\\api\\record\\Consent","com\\zoho\\crm\\api\\record\\SuccessResponse","com\\zoho\\crm\\api\\record\\ConvertActionWrapper","com\\zoho\\crm\\api\\record\\MassUpdateBodyWrapper","com\\zoho\\crm\\api\\record\\APIException","com\\zoho\\crm\\api\\record\\Territory","com\\zoho\\crm\\api\\record\\SuccessfulConvert","com\\zoho\\crm\\api\\record\\LeadConverter","com\\zoho\\crm\\api\\record\\BodyWrapper","com\\zoho\\crm\\api\\record\\Criteria","com\\zoho\\crm\\api\\record\\MassUpdateActionWrapper","com\\zoho\\crm\\api\\record\\Info","com\\zoho\\crm\\api\\record\\FileBodyWrapper","com\\zoho\\crm\\api\\record\\InventoryLineItems","com\\zoho\\crm\\api\\record\\MassUpdate","com\\zoho\\crm\\api\\record\\ActionWrapper","com\\zoho\\crm\\api\\record\\Record","com\\zoho\\crm\\api\\record\\RemindAt","com\\zoho\\crm\\api\\record\\Participants","com\\zoho\\crm\\api\\record\\ConvertBodyWrapper","com\\zoho\\crm\\api\\record\\MassUpdateResponseWrapper","com\\zoho\\crm\\api\\record\\FileDetails","com\\zoho\\crm\\api\\record\\Reminder","com\\zoho\\crm\\api\\record\\DeletedRecordsWrapper","com\\zoho\\crm\\api\\record\\DeletedRecord","com\\zoho\\crm\\api\\record\\LineTax","com\\zoho\\crm\\api\\record\\RecurringActivity","com\\zoho\\crm\\api\\record\\LineItemProduct","com\\zoho\\crm\\api\\record\\Comment","com\\zoho\\crm\\api\\record\\CarryOverTags","com\\zoho\\crm\\api\\record\\MassUpdateSuccessResponse","com\\zoho\\crm\\api\\record\\PricingDetails","com\\zoho\\crm\\api\\relatedrecords\\APIException","com\\zoho\\crm\\api\\relatedrecords\\SuccessResponse","com\\zoho\\crm\\api\\relatedrecords\\ActionWrapper","com\\zoho\\crm\\api\\relatedrecords\\ResponseWrapper","com\\zoho\\crm\\api\\relatedrecords\\FileBodyWrapper","com\\zoho\\crm\\api\\relatedrecords\\BodyWrapper","com\\zoho\\crm\\api\\sharerecords\\SuccessResponse","com\\zoho\\crm\\api\\sharerecords\\SharedThrough","com\\zoho\\crm\\api\\sharerecords\\APIException","com\\zoho\\crm\\api\\sharerecords\\ResponseWrapper","com\\zoho\\crm\\api\\sharerecords\\ShareRecord","com\\zoho\\crm\\api\\sharerecords\\DeleteActionWrapper","com\\zoho\\crm\\api\\sharerecords\\BodyWrapper","com\\zoho\\crm\\api\\sharerecords\\ActionWrapper","com\\zoho\\crm\\api\\bulkread\\Criteria","com\\zoho\\crm\\api\\bulkread\\Query","com\\zoho\\crm\\api\\bulkread\\RequestWrapper","com\\zoho\\crm\\api\\bulkread\\SuccessResponse","com\\zoho\\crm\\api\\bulkread\\JobDetail","com\\zoho\\crm\\api\\bulkread\\Result","com\\zoho\\crm\\api\\bulkread\\CallBack","com\\zoho\\crm\\api\\bulkread\\ResponseWrapper","com\\zoho\\crm\\api\\bulkread\\APIException","com\\zoho\\crm\\api\\bulkread\\ActionWrapper","com\\zoho\\crm\\api\\bulkread\\FileBodyWrapper","com\\zoho\\crm\\api\\variables\\ResponseWrapper","com\\zoho\\crm\\api\\variables\\BodyWrapper","com\\zoho\\crm\\api\\variables\\APIException","com\\zoho\\crm\\api\\variables\\Variable","com\\zoho\\crm\\api\\variables\\SuccessResponse","com\\zoho\\crm\\api\\variables\\ActionWrapper","com\\zoho\\crm\\api\\org\\SuccessResponse","com\\zoho\\crm\\api\\org\\ResponseWrapper","com\\zoho\\crm\\api\\org\\Org","com\\zoho\\crm\\api\\org\\LicenseDetails","com\\zoho\\crm\\api\\org\\APIException","com\\zoho\\crm\\api\\org\\FileBodyWrapper","com\\zoho\\crm\\api\\query\\ResponseWrapper","com\\zoho\\crm\\api\\query\\BodyWrapper","com\\zoho\\crm\\api\\query\\APIException","com\\zoho\\crm\\api\\profiles\\APIException","com\\zoho\\crm\\api\\profiles\\Category","com\\zoho\\crm\\api\\profiles\\Profile","com\\zoho\\crm\\api\\profiles\\PermissionDetail","com\\zoho\\crm\\api\\profiles\\Section","com\\zoho\\crm\\api\\profiles\\ResponseWrapper","com\\zoho\\crm\\api\\users\\ActionWrapper","com\\zoho\\crm\\api\\users\\SuccessResponse","com\\zoho\\crm\\api\\users\\ResponseWrapper","com\\zoho\\crm\\api\\users\\Territory","com\\zoho\\crm\\api\\users\\CustomizeInfo","com\\zoho\\crm\\api\\users\\Theme","com\\zoho\\crm\\api\\users\\BodyWrapper","com\\zoho\\crm\\api\\users\\Info","com\\zoho\\crm\\api\\users\\Shift","com\\zoho\\crm\\api\\users\\RequestWrapper","com\\zoho\\crm\\api\\users\\User","com\\zoho\\crm\\api\\users\\APIException","com\\zoho\\crm\\api\\users\\TabTheme","com\\zoho\\crm\\api\\modules\\Module","com\\zoho\\crm\\api\\modules\\Territory","com\\zoho\\crm\\api\\modules\\APIException","com\\zoho\\crm\\api\\modules\\SuccessResponse","com\\zoho\\crm\\api\\modules\\ActionWrapper","com\\zoho\\crm\\api\\modules\\ResponseWrapper","com\\zoho\\crm\\api\\modules\\Argument","com\\zoho\\crm\\api\\modules\\RelatedListProperties","com\\zoho\\crm\\api\\modules\\BodyWrapper","com\\zoho\\crm\\api\\tags\\MergeWrapper","com\\zoho\\crm\\api\\tags\\ActionWrapper","com\\zoho\\crm\\api\\tags\\BodyWrapper","com\\zoho\\crm\\api\\tags\\Tag","com\\zoho\\crm\\api\\tags\\ResponseWrapper","com\\zoho\\crm\\api\\tags\\Info","com\\zoho\\crm\\api\\tags\\SuccessResponse","com\\zoho\\crm\\api\\tags\\APIException","com\\zoho\\crm\\api\\tags\\RecordActionWrapper","com\\zoho\\crm\\api\\tags\\CountWrapper","com\\zoho\\crm\\api\\tags\\ConflictWrapper","com\\zoho\\crm\\api\\territories\\Territory","com\\zoho\\crm\\api\\territories\\APIException","com\\zoho\\crm\\api\\territories\\ResponseWrapper","com\\zoho\\crm\\api\\contactroles\\ResponseWrapper","com\\zoho\\crm\\api\\contactroles\\SuccessResponse","com\\zoho\\crm\\api\\contactroles\\BodyWrapper","com\\zoho\\crm\\api\\contactroles\\APIException","com\\zoho\\crm\\api\\contactroles\\ActionWrapper","com\\zoho\\crm\\api\\contactroles\\ContactRole","com\\zoho\\crm\\api\\fields\\RelatedDetails","com\\zoho\\crm\\api\\fields\\Field","com\\zoho\\crm\\api\\fields\\Unique","com\\zoho\\crm\\api\\fields\\Crypt","com\\zoho\\crm\\api\\fields\\ViewType","com\\zoho\\crm\\api\\fields\\AutoNumber","com\\zoho\\crm\\api\\fields\\MultiSelectLookup","com\\zoho\\crm\\api\\fields\\PickListValue","com\\zoho\\crm\\api\\fields\\ResponseWrapper","com\\zoho\\crm\\api\\fields\\ToolTip","com\\zoho\\crm\\api\\fields\\Currency","com\\zoho\\crm\\api\\fields\\Formula","com\\zoho\\crm\\api\\fields\\Private1","com\\zoho\\crm\\api\\fields\\LookupField","com\\zoho\\crm\\api\\fields\\APIException","com\\zoho\\crm\\api\\fields\\Module","com\\zoho\\crm\\api\\fields\\AssociationDetails","com\\zoho\\crm\\api\\variablegroups\\ResponseWrapper","com\\zoho\\crm\\api\\variablegroups\\VariableGroup","com\\zoho\\crm\\api\\variablegroups\\APIException","com\\zoho\\crm\\api\\currencies\\Currency","com\\zoho\\crm\\api\\currencies\\ResponseWrapper","com\\zoho\\crm\\api\\currencies\\SuccessResponse","com\\zoho\\crm\\api\\currencies\\BaseCurrencyWrapper","com\\zoho\\crm\\api\\currencies\\ActionWrapper","com\\zoho\\crm\\api\\currencies\\APIException","com\\zoho\\crm\\api\\currencies\\BodyWrapper","com\\zoho\\crm\\api\\currencies\\Format","com\\zoho\\crm\\api\\currencies\\BaseCurrencyActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\record\\Reminder":{"period":{"name":"period","type":"String","required":true},"unit":{"name":"unit","type":"String","required":true}},"com\\zoho\\crm\\api\\roles\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\roles\\APIException","com\\zoho\\crm\\api\\roles\\ResponseWrapper"],"interface":true},"com\\zoho\\crm\\api\\bulkread\\SuccessResponse":{"code":{"values":["ADDED_SUCCESSFULLY"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"operation","type":"String"},{"values":["COMPLETED","IN PROGRESS","ADDED","FAILURE"],"name":"state","type":"com\\zoho\\crm\\api\\util\\Choice"},{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_by","type":"com\\zoho\\crm\\api\\users\\User"},{"name":"created_time","type":"DateTime"}],"name":"details","type":"Map"},"message":{"values":["Added successfully."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\record\\Info":{"perPage":{"name":"per_page","type":"Integer"},"moreRecords":{"name":"more_records","type":"Boolean"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"}},"com\\zoho\\crm\\api\\variables\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\variables\\ResponseWrapper","com\\zoho\\crm\\api\\variables\\APIException"],"interface":true},"com\\zoho\\crm\\api\\fields\\Module":{"layout":{"structure_name":"com\\zoho\\crm\\api\\layouts\\Layout","name":"layout","type":"com\\zoho\\crm\\api\\layouts\\Layout"},"displayLabel":{"name":"display_label","type":"String"},"apiName":{"name":"api_name","type":"String"},"module":{"name":"module","type":"String"},"moduleName":{"name":"module_name","type":"String"},"id":{"name":"id","type":"Long"}},"com\\zoho\\crm\\api\\relatedlists\\APIException":{"code":{"values":["INVALID_MODULE","REQUIRED_PARAM_MISSING","INTERNAL_ERROR"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"param","type":"String"}],"name":"details","type":"Map"},"message":{"values":["the module name given seems to be invalid","the given module is not supported in api","One of the expected parameter is missing","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\users\\APIException":{"code":{"values":["ID_ALREADY_DELETED","CANNOT_UPDATE_DELETED_USER","AUTHORIZATION_FAILED","PATTERN_NOT_MATCHED","INVALID_REQUEST","LICENSE_LIMIT_EXCEEDED","DUPLICATE_DATA","INVALID_DATA","UNAPPROVABLE","MANDATORY_NOT_FOUND","INTERNAL_ERROR","EMAIL_UPDATE_NOT_ALLOWED","ID_ALREADY_DEACTIVATED","ID_ALREADY_ACTIVE","FEATURE_PERMISSION","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"api_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred.","Cannot add user under CRM Plus account. Kindly use CRMPlus URL to add user","Request exceeds your license limit. Need to upgrade in order to add","Failed to add user since same email id is already present","Email Id should not contain @skydesk.jp. Please choose a different email id","Invalid Email Id. Please choose a different email id","Cannot add user for CRMPlus account from CRM. Kindly add user through CRMPlus","Company Name is required","Error occurred in resending the invitation of CRMPLUS user in CRM account","Cannot update the time_zone of another User","Either trial has expired or user does not have sufficient privilege to perform this action","Error occurred while updating CRMPlus User in CRM Account","invalid_data","Deleted user cannot be updated","Re-invite is not allowed for a confirmed user","Cannot update email of a confirmed CRM User","User with same email id is already in CRM Plus","User is already deactivated","Primary Contact cannot be deactivated","User is already active","Share among Subordinates Feature is not available","Profile and Role cannot be Updated by the user.","the_id_given_seems_to_be_invalid","Primary contact cannot be deleted","User is already deleted","User does not have sufficient privilege to delete users"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\fields\\Field":{"private":{"structure_name":"com\\zoho\\crm\\api\\fields\\Private1","name":"private","type":"com\\zoho\\crm\\api\\fields\\Private1"},"apiName":{"name":"api_name","type":"String"},"webhook":{"name":"webhook","type":"Boolean"},"criteria":{"structure_name":"com\\zoho\\crm\\api\\customviews\\Criteria","name":"criteria","type":"com\\zoho\\crm\\api\\customviews\\Criteria"},"crypt":{"structure_name":"com\\zoho\\crm\\api\\fields\\Crypt","name":"crypt","type":"com\\zoho\\crm\\api\\fields\\Crypt"},"defaultValue":{"name":"default_value","type":"String"},"validationRule":{"name":"validation_rule","type":"Map"},"tooltip":{"structure_name":"com\\zoho\\crm\\api\\fields\\ToolTip","name":"tooltip","type":"com\\zoho\\crm\\api\\fields\\ToolTip"},"quickSequenceNumber":{"name":"quick_sequence_number","type":"Integer"},"relatedDetails":{"structure_name":"com\\zoho\\crm\\api\\fields\\RelatedDetails","name":"related_details","type":"com\\zoho\\crm\\api\\fields\\RelatedDetails"},"jsonType":{"name":"json_type","type":"String"},"type":{"name":"_type","type":"String"},"layouts":{"structure_name":"com\\zoho\\crm\\api\\layouts\\Layout","name":"layouts","type":"com\\zoho\\crm\\api\\layouts\\Layout"},"mandatory":{"name":"mandatory","type":"Boolean"},"content":{"name":"content","type":"String"},"blueprintSupported":{"name":"blueprint_supported","type":"Boolean"},"associationDetails":{"structure_name":"com\\zoho\\crm\\api\\fields\\AssociationDetails","name":"association_details","type":"com\\zoho\\crm\\api\\fields\\AssociationDetails"},"pickListValues":{"structure_name":"com\\zoho\\crm\\api\\fields\\PickListValue","name":"pick_list_values","type":"List"},"fieldLabel":{"name":"field_label","type":"String"},"fieldReadOnly":{"name":"field_read_only","type":"Boolean"},"businesscardSupported":{"name":"businesscard_supported","type":"Boolean"},"currency":{"structure_name":"com\\zoho\\crm\\api\\fields\\Currency","name":"currency","type":"com\\zoho\\crm\\api\\fields\\Currency"},"id":{"name":"id","type":"Long","read-only":true,"primary":true},"displayLabel":{"name":"display_label","type":"String"},"personalityName":{"name":"personality_name","type":"String"},"lookup":{"structure_name":"com\\zoho\\crm\\api\\fields\\Module","name":"lookup","type":"com\\zoho\\crm\\api\\fields\\Module"},"visible":{"name":"visible","type":"Boolean"},"dataType":{"name":"data_type","type":"String","read-only":true},"length":{"name":"length","type":"Integer"},"readOnly":{"name":"read_only","type":"Boolean"},"historyTracking":{"name":"history_tracking","type":"Boolean"},"sectionId":{"name":"section_id","type":"Integer"},"systemMandatory":{"name":"system_mandatory","type":"Boolean"},"message":{"name":"message","type":"String"},"subform":{"structure_name":"com\\zoho\\crm\\api\\fields\\Module","name":"subform","type":"com\\zoho\\crm\\api\\fields\\Module"},"autoNumber":{"structure_name":"com\\zoho\\crm\\api\\fields\\AutoNumber","name":"auto_number","type":"com\\zoho\\crm\\api\\fields\\AutoNumber"},"customField":{"name":"custom_field","type":"Boolean"},"decimalPlace":{"name":"decimal_place","type":"Integer"},"convertMapping":{"name":"convert_mapping","type":"Map"},"createdSource":{"name":"created_source","type":"String"},"multiModuleLookup":{"name":"multi_module_lookup","type":"Map"},"massUpdate":{"name":"mass_update","type":"Boolean"},"transitionSequence":{"name":"transition_sequence","type":"Integer"},"unique":{"structure_name":"com\\zoho\\crm\\api\\fields\\Unique","name":"unique","type":"com\\zoho\\crm\\api\\fields\\Unique"},"viewType":{"structure_name":"com\\zoho\\crm\\api\\fields\\ViewType","name":"view_type","type":"com\\zoho\\crm\\api\\fields\\ViewType"},"formula":{"structure_name":"com\\zoho\\crm\\api\\fields\\Formula","name":"formula","type":"com\\zoho\\crm\\api\\fields\\Formula"},"multiselectlookup":{"structure_name":"com\\zoho\\crm\\api\\fields\\MultiSelectLookup","name":"multiselectlookup","type":"com\\zoho\\crm\\api\\fields\\MultiSelectLookup"},"columnName":{"name":"column_name","type":"String"}},"com\\zoho\\crm\\api\\record\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\record\\SuccessResponse","com\\zoho\\crm\\api\\record\\APIException"],"interface":true},"com\\zoho\\crm\\api\\blueprint\\ValidationError":{"apiName":{"name":"api_name","type":"String"},"message":{"name":"message","type":"String"}},"com\\zoho\\crm\\api\\attachments\\ActionWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\attachments\\ActionResponse","name":"data","type":"List"}},"com\\zoho\\crm\\api\\blueprint\\ResponseWrapper":{"blueprint":{"structure_name":"com\\zoho\\crm\\api\\blueprint\\BluePrint","name":"blueprint","type":"com\\zoho\\crm\\api\\blueprint\\BluePrint"}},"com\\zoho\\crm\\api\\attachments\\FileBodyWrapper":{"file":{"name":"file","type":"com\\zoho\\crm\\api\\util\\StreamWrapper","required":true}},"com\\zoho\\crm\\api\\variables\\ResponseWrapper":{"variables":{"structure_name":"com\\zoho\\crm\\api\\variables\\Variable","name":"variables","type":"List"}},"com\\zoho\\crm\\api\\territories\\Territory":{"modifiedTime":{"name":"modified_time","type":"DateTime"},"manager":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"manager","type":"com\\zoho\\crm\\api\\users\\User"},"createdBy":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_by","type":"com\\zoho\\crm\\api\\users\\User"},"criteria":{"structure_name":"com\\zoho\\crm\\api\\customviews\\Criteria","name":"criteria","type":"com\\zoho\\crm\\api\\customviews\\Criteria"},"name":{"name":"name","type":"String"},"createdTime":{"name":"created_time","type":"DateTime"},"description":{"name":"description","type":"String"},"modifiedBy":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"modified_by","type":"com\\zoho\\crm\\api\\users\\User"},"id":{"name":"id","type":"Long","primary":true},"parentId":{"name":"parent_id","type":"String"}},"com\\zoho\\crm\\api\\org\\APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INTERNAL_ERROR","INVALID_DATA"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","the request does not contain any file","invalid file type","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\modules\\BodyWrapper":{"modules":{"structure_name":"com\\zoho\\crm\\api\\modules\\Module","name":"modules","max-length":1,"type":"List","min-length":1}},"com\\zoho\\crm\\api\\tags\\MergeWrapper":{"tags":{"structure_name":"com\\zoho\\crm\\api\\tags\\ConflictWrapper","name":"tags","max-length":1,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\customviews\\Info":{"default":{"name":"default","type":"String"},"perPage":{"name":"per_page","type":"Integer"},"moreRecords":{"name":"more_records","type":"Boolean"},"count":{"name":"count","type":"Integer"},"translation":{"structure_name":"com\\zoho\\crm\\api\\customviews\\Translation","name":"translation","type":"com\\zoho\\crm\\api\\customviews\\Translation"},"page":{"name":"page","type":"Integer"}},"com\\zoho\\crm\\api\\territories\\APIException":{"code":{"values":["OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","CURRENCIES_NOT_ENABLED","FEATURE_NOT_SUPPORTED"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\notes\\ResponseWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\notes\\Note","name":"data","type":"List"},"info":{"structure_name":"com\\zoho\\crm\\api\\notes\\Info","name":"info","type":"com\\zoho\\crm\\api\\notes\\Info"}},"com\\zoho\\crm\\api\\tags\\CreateTagsParam":{"module":{"name":"module","type":"String","required":true}},"com\\zoho\\crm\\api\\query\\ResponseWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\record\\Record","name":"data","type":"List"},"info":{"structure_name":"com\\zoho\\crm\\api\\record\\Info","name":"info","type":"com\\zoho\\crm\\api\\record\\Info"}},"com\\zoho\\crm\\api\\fields\\Private1":{"restricted":{"name":"restricted","type":"Boolean"},"type":{"name":"type","type":"String"},"export":{"name":"export","type":"Boolean"}},"com\\zoho\\crm\\api\\file\\APIException":{"code":{"values":["VIRUS_DETECTED","failure_in_attachment_handling","INTERNAL_ERROR","INVALID_TOKEN","INVALID_DATA","MANDATORY_NOT_FOUND","NO_PERMISSION","INVALID_MODULE","NOT_SUPPORTED","PATTERN_NOT_MATCHED","OAUTH_SCOPE_MISMATCH","DUPLICATE_DATA","INVALID_QUERY","MAPPING_MISMATCH","ID_ALREADY_CONVERTED","FILE_SIZE_MORE_THAN_ALLOWED_SIZE","RECORD_IN_BLUEPRINT","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","REQUIRED_PARAM_MISSING"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"id","type":"String"}],"name":"details","type":"Map"},"message":{"values":["Unable to process your request. Virus has been detected.","Problem in uploading attachment. kindly upload the file properly","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","invalid data","permission denied","Internal server error occurred.","duplicate data","required field not found","record not deleted","record not deletable","Authentication failed","One of the expected parameter is missing","mandatory param missing","unable to process your request. please verify whether you have entered proper method name"," parameter and parameter values."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\currencies\\BodyWrapper":{"currencies":{"structure_name":"com\\zoho\\crm\\api\\currencies\\Currency","name":"currencies","max-length":10,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\variables\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\variables\\APIException","com\\zoho\\crm\\api\\variables\\ActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\org\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["photo uploaded successfully"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\attachments\\DeleteAttachmentsParam":{"ids":{"name":"ids","type":"Long","required":true}},"com\\zoho\\crm\\api\\modules\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\modules\\APIException","com\\zoho\\crm\\api\\modules\\ActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\bulkwrite\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\bulkwrite\\SuccessResponse","com\\zoho\\crm\\api\\bulkwrite\\APIException"],"interface":true},"com\\zoho\\crm\\api\\variables\\ActionWrapper":{"variables":{"structure_name":"com\\zoho\\crm\\api\\variables\\ActionResponse","name":"variables","type":"List","required":true}},"com\\zoho\\crm\\api\\record\\InventoryLineItems":{"unitPrice":{"name":"unit_price","type":"Float"},"quantityInStock":{"name":"quantity_in_stock","type":"Float"},"product":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\record\\LineItemProduct","name":"product","type":"com\\zoho\\crm\\api\\record\\LineItemProduct","required":true},"quantity":{"name":"quantity","type":"Float","required":true},"book":{"name":"book","type":"Float"},"discount":{"name":"Discount","type":"String"},"tax":{"name":"Tax","type":"Float"},"totalAfterDiscount":{"name":"total_after_discount","type":"Float"},"total":{"name":"total","type":"Float"},"netTotal":{"name":"net_total","type":"Float"},"lineTax":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\record\\LineTax","name":"line_tax","type":"List"},"listPrice":{"name":"list_price","type":"Float"},"productDescription":{"name":"product_description","type":"String"}},"com\\zoho\\crm\\api\\org\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\org\\SuccessResponse","com\\zoho\\crm\\api\\org\\APIException"],"interface":true},"com\\zoho\\crm\\api\\profiles\\GetProfilesHeader":{"ifModifiedSince":{"name":"If-Modified-Since","type":"DateTime"}},"com\\zoho\\crm\\api\\relatedlists\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\relatedlists\\ResponseWrapper","com\\zoho\\crm\\api\\relatedlists\\APIException"],"interface":true},"com\\zoho\\crm\\api\\tags\\AddTagsToMultipleRecordsParam":{"ids":{"name":"ids","type":"Long","required":true},"tagNames":{"name":"tag_names","type":"String","required":true},"overWrite":{"name":"over_write","type":"String"}},"com\\zoho\\crm\\api\\record\\GetDeletedRecordsParam":{"perPage":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"type":{"name":"type","type":"String"}},"com\\zoho\\crm\\api\\variables\\APIException":{"code":{"values":["UNABLE_TO_PARSE_DATA_TYPE","REQUIRED_PARAM_MISSING","DUPLICATE_DATA","INVALID_DATA","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INTERNAL_ERROR","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"param","type":"String"},{"name":"api_name","type":"String"},{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["either the request body or parameters is in wrong format","One of the expected parameter is missing","duplicate data","variable not deleted","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\notification\\GetNotificationDetailsParam":{"perPage":{"name":"per_page","type":"Integer"},"module":{"name":"module","type":"String"},"page":{"name":"page","type":"Integer"},"channelId":{"name":"channel_id","type":"Long"}},"com\\zoho\\crm\\api\\tags\\RemoveTagsFromMultipleRecordsParam":{"ids":{"name":"ids","type":"Long","required":true},"tagNames":{"name":"tag_names","type":"String","required":true}},"com\\zoho\\crm\\api\\file\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"name","type":"String"},{"name":"id","type":"String"}],"name":"details","type":"Map"},"message":{"values":["uploaded Succeessfully"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\users\\Theme":{"newBackground":{"name":"new_background","type":"String"},"normalTab":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\TabTheme","name":"normal_tab","type":"com\\zoho\\crm\\api\\users\\TabTheme"},"background":{"name":"background","type":"String"},"screen":{"name":"screen","type":"String"},"type":{"name":"type","type":"String"},"selectedTab":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\TabTheme","name":"selected_tab","type":"com\\zoho\\crm\\api\\users\\TabTheme"}},"com\\zoho\\crm\\api\\customviews\\Criteria":{"comparator":{"values":["equal","not_equal","in","not_in","less_than","less_equal","greater_than","greater_equal","contains","not_contains","starts_with","ends_with","between","not_between"],"name":"comparator","type":"com\\zoho\\crm\\api\\util\\Choice"},"groupOperator":{"values":["and","or"],"name":"group_operator","type":"com\\zoho\\crm\\api\\util\\Choice"},"field":{"name":"field","type":"String"},"value":{"name":"value","type":"Object"},"group":{"structure_name":"com\\zoho\\crm\\api\\customviews\\Criteria","name":"group","type":"List"}},"com\\zoho\\crm\\api\\org\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\org\\ResponseWrapper","com\\zoho\\crm\\api\\org\\APIException"],"interface":true},"com\\zoho\\crm\\api\\attachments\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\attachments\\APIException","com\\zoho\\crm\\api\\attachments\\ResponseWrapper","com\\zoho\\crm\\api\\attachments\\FileBodyWrapper"],"interface":true},"com\\zoho\\crm\\api\\bulkwrite\\UploadFileHeader":{"feature":{"values":["bulk-write"],"name":"feature","type":"String"},"XCRMORG":{"name":"X-CRM-ORG","type":"String"}},"com\\zoho\\crm\\api\\bulkwrite\\FieldMapping":{"apiName":{"name":"api_name","type":"String","required":true},"defaultValue":{"name":"default_value","type":"Map"},"module":{"name":"module","type":"String"},"format":{"name":"format","type":"String"},"index":{"name":"index","type":"Integer"},"findBy":{"name":"find_by","type":"String"}},"com\\zoho\\crm\\api\\tags\\RemoveTagsFromRecordParam":{"tagNames":{"name":"tag_names","type":"String","required":true}},"com\\zoho\\crm\\api\\relatedrecords\\ActionWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\relatedrecords\\ActionResponse","name":"data","type":"List"}},"com\\zoho\\crm\\api\\users\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\users\\ActionWrapper","com\\zoho\\crm\\api\\users\\APIException"],"interface":true},"com\\zoho\\crm\\api\\fields\\Unique":{"casesensitive":{"name":"casesensitive","type":"String"}},"com\\zoho\\crm\\api\\territories\\ResponseWrapper":{"territories":{"structure_name":"com\\zoho\\crm\\api\\territories\\Territory","name":"territories","type":"List"}},"com\\zoho\\crm\\api\\sharerecords\\GetSharedRecordDetailsParam":{"view":{"name":"view","type":"String"},"sharedTo":{"name":"sharedTo","type":"Long"}},"com\\zoho\\crm\\api\\record\\FileDetails":{"extn":{"name":"extn","type":"String"},"fileName":{"name":"file_Name","type":"String"},"previewUrl":{"name":"preview_Url","type":"String"},"isPreviewAvailable":{"name":"is_Preview_Available","type":"Boolean"},"downloadUrl":{"name":"download_Url","type":"String"},"creatorId":{"name":"creator_Id","type":"String"},"entityId":{"name":"entity_Id","type":"String"},"delete":{"name":"_delete","type":"String"},"mode":{"name":"mode","type":"String"},"linkDocs":{"name":"link_Docs","type":"Integer"},"fileSize":{"name":"file_Size","type":"String"},"deleteUrl":{"name":"delete_Url","type":"String"},"attachmentId":{"name":"attachment_Id","type":"String"},"originalSizeByte":{"name":"original_Size_Byte","type":"String"},"fileId":{"name":"file_Id","type":"String","required":true}},"com\\zoho\\crm\\api\\blueprint\\NextTransition":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com\\zoho\\crm\\api\\notification\\Notification":{"resourceId":{"name":"resource_id","type":"String"},"deleteevents":{"name":"_delete_events","type":"Boolean"},"notifyOnRelatedAction":{"name":"notify_on_related_action","type":"Boolean"},"notifyUrl":{"name":"notify_url","type":"String","required":true},"resourceName":{"name":"resource_name","type":"String"},"resourceUri":{"name":"resource_uri","type":"String"},"channelExpiry":{"name":"channel_expiry","type":"DateTime"},"fields":{"name":"fields","type":"Map"},"channelId":{"name":"channel_id","type":"Long","required":true,"primary":true},"events":{"required_in_update":true,"name":"events","type":"List","required":true},"token":{"name":"token","max-length":50,"type":"String","min-length":1}},"com\\zoho\\crm\\api\\customviews\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\customviews\\ResponseWrapper","com\\zoho\\crm\\api\\customviews\\APIException"],"interface":true},"com\\zoho\\crm\\api\\bulkwrite\\APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","FILE_TOO_LARGE","INVALID_FILE_FORMAT","MANDATORY_FIELDS_NOT_MAPPED","MANDATORY_NOT_FOUND","INVALID_FIELD","INVALID_FORMAT","INVALID_FILE_ID","HEADER_LIMIT_EXCEEDED","COLUMN_INDEX_NOT_FOUND","MODULE_NOT_AVAILABLE","INVALID_DATA","DUPLICATE_DATA","NOT_APPROVED","BLOCKED_RECORD","CANNOT_PROCESS","LIMIT_EXCEEDED","RESOURCE_NOT_FOUND","MISSING_REQUIRED_KEY","INVALID_FIELD_NAME","FILE_NOT_SUPPORTED","INTERNAL_ERROR"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"xError":{"values":["check if headers [feature:X-CRM-ORG] are present and valid"],"name":"x-error","type":"com\\zoho\\crm\\api\\util\\Choice"},"httpStatus":{"name":"http_status","type":"String"},"errorMessage":{"values":["Bad Request"],"name":"ERROR_MESSAGE","type":"com\\zoho\\crm\\api\\util\\Choice"},"errorCode":{"name":"ERROR_CODE","type":"Integer"},"details":{"name":"details","type":"Map"},"xInfo":{"values":["Link not valid"],"name":"x-info","type":"com\\zoho\\crm\\api\\util\\Choice"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","invalid file format. only zip format is supported","File size too large to process","The requested resource doesn't exist.","required key operation is not found in request body.","improper file id","required key index for field Company is not found in request body.","All mandatory fields are not mapped for the layout","Requested module 'asdf' is not available.","invalid mapping. invalid api_name ast_Name.","File not supported for bulk write","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"},"info":{"values":["Forbidden"],"name":"info","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\customviews\\APIException":{"code":{"values":["NO_PERMISSION","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","REQUIRED_PARAM_MISSING","INVALID_MODULE","INTERNAL_ERROR","INVALID_DATA"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"expected_data_type","type":"String"},{"name":"api_name","type":"String"},{"structure_name":"com\\zoho\\crm\\api\\customviews\\Range","name":"range","type":"com\\zoho\\crm\\api\\customviews\\Range"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","The given module is not supported in API","invalid data","Invalid ID","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\contactroles\\BodyWrapper":{"contactRoles":{"structure_name":"com\\zoho\\crm\\api\\contactroles\\ContactRole","name":"contact_roles","max-length":100,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\notes\\Info":{"perPage":{"name":"per_page","type":"Integer"},"moreRecords":{"name":"more_records","type":"Boolean"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"}},"com\\zoho\\crm\\api\\relatedlists\\RelatedList":{"displayLabel":{"name":"display_label","type":"String"},"sequenceNumber":{"name":"sequence_number","type":"String"},"apiName":{"name":"api_name","type":"String"},"module":{"name":"module","type":"String"},"name":{"name":"name","type":"String"},"action":{"name":"action","type":"String"},"id":{"name":"id","type":"Long","primary":true},"href":{"name":"href","type":"String"},"type":{"name":"type","type":"String"},"connectedmodule":{"name":"connectedmodule","type":"String"},"linkingmodule":{"name":"linkingmodule","type":"String"}},"com\\zoho\\crm\\api\\contactroles\\DeleteContactRolesParam":{"ids":{"name":"ids","type":"Long","required":true}},"com\\zoho\\crm\\api\\tags\\GetTagsParam":{"myTags":{"values":["true","false"],"name":"my_tags","type":"String"},"module":{"name":"module","type":"String","required":true}},"com\\zoho\\crm\\api\\profiles\\Profile":{"displayLabel":{"name":"display_label","type":"String"},"modifiedTime":{"name":"modified_time","type":"DateTime"},"permissionsDetails":{"structure_name":"com\\zoho\\crm\\api\\profiles\\PermissionDetail","name":"permissions_details","type":"List"},"description":{"name":"description","type":"String"},"delete":{"name":"_delete","type":"Boolean"},"sections":{"structure_name":"com\\zoho\\crm\\api\\profiles\\Section","name":"sections","type":"List"},"default":{"name":"default","type":"Boolean"},"createdBy":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_by","type":"com\\zoho\\crm\\api\\users\\User"},"name":{"name":"name","type":"String"},"createdTime":{"name":"created_time","type":"DateTime"},"modifiedBy":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"modified_by","type":"com\\zoho\\crm\\api\\users\\User"},"id":{"name":"id","type":"Long","primary":true},"category":{"name":"category","type":"Boolean"}},"com\\zoho\\crm\\api\\variablegroups\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\variablegroups\\ResponseWrapper","com\\zoho\\crm\\api\\variablegroups\\APIException"],"interface":true},"com\\zoho\\crm\\api\\bulkread\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\bulkread\\APIException","com\\zoho\\crm\\api\\bulkread\\ActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\bulkread\\FileBodyWrapper":{"file":{"name":"file","type":"com\\zoho\\crm\\api\\util\\StreamWrapper","required":true}},"com\\zoho\\crm\\api\\variables\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["variable added","variable updated","variable deleted"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\notification\\DisableNotificationsParam":{"channelIds":{"name":"channel_ids","type":"Long"}},"com\\zoho\\crm\\api\\layouts\\Properties":{"maximumRows":{"name":"maximum_rows","type":"Integer"},"tooltip":{"structure_name":"com\\zoho\\crm\\api\\fields\\ToolTip","name":"tooltip","type":"com\\zoho\\crm\\api\\fields\\ToolTip"},"reorderRows":{"name":"reorder_rows","type":"Boolean"}},"com\\zoho\\crm\\api\\layouts\\APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","REQUIRED_PARAM_MISSING","INTERNAL_ERROR","NO_PERMISSION","INVALID_DATA"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","User does not have permission to access this layout.","Layout does not belongs to the given module","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\record\\ConvertBodyWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\record\\LeadConverter","name":"data","max-length":1,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\record\\Comment":{"commentedTime":{"name":"commented_time","type":"DateTime"},"commentContent":{"name":"comment_content","type":"String"},"id":{"name":"id","type":"Long"},"commentedBy":{"name":"commented_by","type":"String"}},"com\\zoho\\crm\\api\\variables\\BodyWrapper":{"variables":{"structure_name":"com\\zoho\\crm\\api\\variables\\Variable","name":"variables","max-length":100,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\record\\SearchRecordsParam":{"approved":{"name":"approved","type":"String"},"perPage":{"name":"per_page","type":"Integer"},"phone":{"name":"phone","type":"String"},"converted":{"name":"converted","type":"String"},"criteria":{"name":"criteria","type":"String"},"page":{"name":"page","type":"Integer"},"word":{"name":"word","type":"String"},"email":{"name":"email","type":"String"}},"com\\zoho\\crm\\api\\record\\DeleteRecordParam":{"wfTrigger":{"name":"wf_trigger","type":"String"}},"com\\zoho\\crm\\api\\bulkwrite\\File":{"updatedCount":{"name":"updated_count","type":"Integer"},"name":{"name":"name","type":"String"},"skippedCount":{"name":"skipped_count","type":"Integer"},"addedCount":{"name":"added_count","type":"Integer"},"totalCount":{"name":"total_count","type":"Integer"},"status":{"values":["ADDED","IN PROGRESS","COMPLETED","SKIPPED","FAILED"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\record\\MassUpdateBodyWrapper":{"cvid":{"name":"cvid","type":"String"},"data":{"structure_name":"com\\zoho\\crm\\api\\record\\Record","name":"data","type":"List","skip_mandatory":true,"required":true},"criteria":{"structure_name":"com\\zoho\\crm\\api\\record\\Criteria","name":"criteria","type":"List"},"ids":{"name":"ids","type":"List"},"territory":{"structure_name":"com\\zoho\\crm\\api\\record\\Territory","name":"territory","type":"com\\zoho\\crm\\api\\record\\Territory"},"overWrite":{"name":"over_write","type":"Boolean"}},"com\\zoho\\crm\\api\\relatedrecords\\GetRelatedRecordsParam":{"perPage":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"}},"com\\zoho\\crm\\api\\users\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"email","type":"String"}],"name":"details","type":"Map"},"message":{"values":["User added","User updated","User deleted"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\tags\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\tags\\ResponseWrapper","com\\zoho\\crm\\api\\tags\\APIException"],"interface":true},"com\\zoho\\crm\\api\\layouts\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\layouts\\ResponseWrapper","com\\zoho\\crm\\api\\layouts\\APIException"],"interface":true},"com\\zoho\\crm\\api\\modules\\Module":{"relatedListProperties":{"structure_name":"com\\zoho\\crm\\api\\modules\\RelatedListProperties","name":"related_list_properties","type":"com\\zoho\\crm\\api\\modules\\RelatedListProperties"},"modifiedTime":{"name":"modified_time","type":"DateTime"},"apiName":{"name":"api_name","type":"String","primary":true},"generatedType":{"values":["default","web","custom","linking"],"name":"generated_type","type":"com\\zoho\\crm\\api\\util\\Choice"},"webLink":{"name":"web_link","type":"String"},"deletable":{"name":"deletable","type":"Boolean"},"moduleName":{"name":"module_name","type":"String"},"description":{"name":"description","type":"String"},"scoringSupported":{"name":"scoring_supported","type":"Boolean"},"filterSupported":{"name":"filter_supported","type":"Boolean"},"feedsRequired":{"name":"feeds_required","type":"Boolean"},"creatable":{"name":"creatable","type":"Boolean"},"customView":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\customviews\\CustomView","name":"custom_view","type":"com\\zoho\\crm\\api\\customviews\\CustomView"},"webformSupported":{"name":"webform_supported","type":"Boolean"},"kanbanViewSupported":{"name":"kanban_view_supported","type":"Boolean"},"modifiedBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"modified_by","type":"com\\zoho\\crm\\api\\users\\User"},"id":{"name":"id","type":"Long","primary":true},"showAsTab":{"name":"show_as_tab","type":"Boolean"},"sequenceNumber":{"name":"sequence_number","type":"Integer"},"globalSearchSupported":{"name":"global_search_supported","type":"Boolean"},"visibility":{"name":"visibility","type":"Integer"},"convertable":{"name":"convertable","type":"Boolean"},"editable":{"name":"editable","type":"Boolean"},"quickCreate":{"name":"quick_create","type":"Boolean"},"profiles":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\profiles\\Profile","name":"profiles","type":"List"},"filterStatus":{"name":"filter_status","type":"Boolean"},"presenceSubMenu":{"name":"presence_sub_menu","type":"Boolean"},"pluralLabel":{"name":"plural_label","type":"String"},"singularLabel":{"name":"singular_label","type":"String"},"parentModule":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\modules\\Module","name":"parent_module","type":"com\\zoho\\crm\\api\\modules\\Module"},"businessCardFieldLimit":{"name":"business_card_field_limit","type":"Integer"},"perPage":{"name":"per_page","type":"Integer"},"viewable":{"name":"viewable","type":"Boolean"},"apiSupported":{"name":"api_supported","type":"Boolean"},"name":{"name":"name","type":"String"},"displayField":{"name":"display_field","type":"String"},"emailtemplateSupport":{"name":"emailTemplate_support","type":"Boolean"},"arguments":{"structure_name":"com\\zoho\\crm\\api\\modules\\Argument","name":"arguments","type":"List"},"triggersSupported":{"name":"triggers_supported","type":"Boolean"},"kanbanView":{"name":"kanban_view","type":"Boolean"},"inventoryTemplateSupported":{"name":"inventory_template_supported","type":"Boolean"},"properties":{"name":"$properties","type":"List"},"searchLayoutFields":{"name":"search_layout_fields","type":"List"},"territory":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\modules\\Territory","name":"territory","type":"com\\zoho\\crm\\api\\modules\\Territory"}},"com\\zoho\\crm\\api\\bulkread\\APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_SERVICE_NAME","INVALID_BULK_OPERATION","RESOURCE_NOT_FOUND","MEDIA_TYPE_NOT_SUPPORTED","REQUEST_BODY_NOT_READABLE","REQUEST_BODY_IS_EMPTY","MODULE_NOT_AVAILABLE","NOT_SUPPORTED_FEATURE","NO_PERMISSION","MODULE_NOT_SUPPORTED","JOB_NOT_SUPPORTED","QUERY_NOT_SUPPORTED","INVALID_CALLBACK_URL","INVALID_CALLBACK_METHOD","JOIN_LIMIT_EXCEEDED","CRITERIA_NOT_SUPPORTED","INVALID_CRITERIA","AMBIGUOUS_CRITERIA","AMBIGUOUS_GROUP_IN_CRITERIA","CRITERIA_LIMIT_EXCEEDED","FIELD_IN_CRITERIA_NOT_SUPPORTED","FIELD_AND_COMPARATOR_IN_CRITERIA_NOT_COMPATIBLE","FIELD_IN_CRITERIA_NOT_AVAILABLE","FIELD_COMPARATOR_IN_CRITERIA_NOT_SUPPORTED","VALUE_IN_CRITERIA_NOT_SUPPORTED","FIELD_AND_VALUE_IN_CRITERIA_NOT_COMPATIBLE","COMPARATOR_AND_VALUE_IN_CRITERIA_NOT_COMPATIBLE","COMPARATOR_AND_ENCRYPTED_VALUE_IN_CRITERIA_NOT_COMPATIBLE","GROUP_OPERATOR_NOT_SUPPORTED","FIELD_NOT_AVAILABLE","FIELD_NOT_SUPPORTED","VALUE_LIMIT_EXCEEDED_IN_CRITERIA","PAGE_NOT_SUPPORTED","PAGE_RANGE_EXCEEDED","TOO_MANY_REQUESTS","CALLBACK_FAILURE","INTERNAL_SERVER_ERROR","INTERNAL_ERROR"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"resource","type":"String"},{"name":"message","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"info_message","type":"String"},{"name":"parent_api_name","type":"String"},{"name":"comparator","type":"String"},{"name":"value","type":"String"},{"name":"api_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Provided service name %s is not valid/not supported","Requested operation is an invalid bulk operation","record not in process","The requested resource doesn't exist.","Media type is not supported.","Unable to parse the request body.","Request body is empty.","Requested module '%s' is not available.","Feature is not supported"," permission denied","Invalid module for the query. Module '%s' is not supported.","Invalid bulk %s job.","Invalid query for bulk %s job. Query '%s' is not supported.","Invalid URL '%s' for callback.","Invalid request method %s for callback.","Join limit exceeded for the query. Maximum number of joins supported in a query is %d","Invalid criteria for the query. Criteria %s is not supported.","Invalid criteria %s for the query.","Ambiguous criteria %s. Criteria can have either {group"," group_operator} or {api_name"," comparator"," value}.","Ambiguous group in criteria %s. Group should be used only when there are more than one criteria","Number of criteria exceeded the maximum limit of %d","Field api name '%s' for criteria %s is not supported.","Field api name '%s' is not supported with comparator '%s' for criteria %s.","Field api name '%s' is not available for criteria %s. Check visibility and permission for the field","Field api name '%s' doesn't support this comparator '%s' for criteria %s.","Value '%s' is not supported for criteria %s.","Field '%s' is not supported with value '%s' for criteria %s.","Comparator '%s' is not supported with value '%s' for criteria %s.","Comparator '%s' is not supported with value '%s' for criteria %s as the value is encrypted.","Criteria %s doesn't support this logical group operator '%s'. Supported operators are 'and'"," 'or'.","Requested field api name '%s' is not available for the module '%s'. Check permission or visibility for the field.","Invalid field for the module provided in fields. Field api name '%s' is not supported for this module '%s'.","Value exceeded limit %d","Invalid page number for query. Page %s is not supported for the query.","Invalid page number for query. Page %s is not supported for the query. Page range is from %d to %d.","Many requests fired in concurrent than the allowed limit","Callback failed after %d attempts.","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\tags\\ConflictWrapper":{"conflictId":{"name":"conflict_id","type":"String","required":true}},"com\\zoho\\crm\\api\\taxes\\ResponseWrapper":{"preference":{"structure_name":"com\\zoho\\crm\\api\\taxes\\Preference","name":"preference","type":"com\\zoho\\crm\\api\\taxes\\Preference"},"taxes":{"structure_name":"com\\zoho\\crm\\api\\taxes\\Tax","name":"taxes","type":"List"}},"com\\zoho\\crm\\api\\layouts\\Section":{"displayLabel":{"name":"display_label","type":"String"},"sequenceNumber":{"name":"sequence_number","type":"Integer"},"issubformsection":{"name":"isSubformSection","type":"Boolean"},"tabTraversal":{"name":"tab_traversal","type":"Integer"},"apiName":{"name":"api_name","type":"String"},"generatedType":{"name":"generated_type","type":"String"},"name":{"name":"name","type":"String"},"columnCount":{"name":"column_count","type":"Integer"},"fields":{"structure_name":"com\\zoho\\crm\\api\\fields\\Field","name":"fields","type":"List"},"properties":{"structure_name":"com\\zoho\\crm\\api\\layouts\\Properties","name":"properties","type":"com\\zoho\\crm\\api\\layouts\\Properties"}},"com\\zoho\\crm\\api\\notification\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"structure_name":"com\\zoho\\crm\\api\\notification\\Notification","name":"events","type":"List"},{"name":"resource_uri","type":"String"},{"name":"resource_id","type":"String"},{"name":"channel_id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["Successfully subscribed for actions-watch of the given module","Successfully un-subscribed from actions-watch","Successfully updated the subscribe details","Successfully removed the subscribe details"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\currencies\\BaseCurrencyWrapper":{"baseCurrency":{"structure_name":"com\\zoho\\crm\\api\\currencies\\Currency","name":"base_currency","type":"com\\zoho\\crm\\api\\currencies\\Currency","required":true}},"com\\zoho\\crm\\api\\contactroles\\ResponseWrapper":{"contactRoles":{"structure_name":"com\\zoho\\crm\\api\\contactroles\\ContactRole","name":"contact_roles","type":"List"}},"com\\zoho\\crm\\api\\blueprint\\BluePrint":{"processInfo":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\blueprint\\ProcessInfo","name":"process_info","type":"com\\zoho\\crm\\api\\blueprint\\ProcessInfo"},"data":{"structure_name":"com\\zoho\\crm\\api\\record\\Record","required_in_update":true,"name":"data","type":"com\\zoho\\crm\\api\\record\\Record","skip_mandatory":true},"transitionId":{"required_in_update":true,"name":"transition_id","type":"Long"},"transitions":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\blueprint\\Transition","name":"transitions","type":"List"}},"com\\zoho\\crm\\api\\fields\\MultiSelectLookup":{"displayLabel":{"name":"display_label","type":"String"},"apiName":{"name":"api_name","type":"String"},"connectedlookupApiname":{"name":"connectedlookup_apiname","type":"String"},"lookupApiname":{"name":"lookup_apiname","type":"String"},"linkingModule":{"name":"linking_module","type":"String"},"id":{"name":"id","type":"Long"}},"com\\zoho\\crm\\api\\relatedrecords\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\relatedrecords\\APIException","com\\zoho\\crm\\api\\relatedrecords\\SuccessResponse"],"interface":true},"com\\zoho\\crm\\api\\fields\\PickListValue":{"displayValue":{"name":"display_value","type":"String"},"sequenceNumber":{"name":"sequence_number","type":"Integer"},"maps":{"name":"maps","type":"List"},"actualValue":{"name":"actual_value","type":"String"},"sysRefName":{"name":"sys_ref_name","type":"String"},"expectedDataType":{"name":"expected_data_type","type":"String"},"type":{"name":"type","type":"String"}},"com\\zoho\\crm\\api\\notification\\ActionWrapper":{"watch":{"structure_name":"com\\zoho\\crm\\api\\notification\\ActionResponse","name":"watch","type":"List"}},"com\\zoho\\crm\\api\\sharerecords\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\sharerecords\\APIException","com\\zoho\\crm\\api\\sharerecords\\ActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\bulkread\\CallBack":{"method":{"values":["post"],"name":"method","type":"com\\zoho\\crm\\api\\util\\Choice","required":true},"url":{"name":"url","type":"String","required":true}},"com\\zoho\\crm\\api\\customviews\\GetCustomViewsParam":{"perPage":{"name":"per_page","type":"Integer"},"module":{"name":"module","type":"String"},"page":{"name":"page","type":"Integer"}},"com\\zoho\\crm\\api\\file\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\file\\SuccessResponse","com\\zoho\\crm\\api\\file\\APIException"],"interface":true},"com\\zoho\\crm\\api\\users\\Shift":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com\\zoho\\crm\\api\\customviews\\Range":{"from":{"name":"from","type":"Integer"},"to":{"name":"to","type":"Integer"}},"com\\zoho\\crm\\api\\relatedrecords\\FileBodyWrapper":{"file":{"name":"file","type":"com\\zoho\\crm\\api\\util\\StreamWrapper","required":true}},"com\\zoho\\crm\\api\\users\\RequestWrapper":{"users":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"users","max-length":1,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\variablegroups\\VariableGroup":{"displayLabel":{"name":"display_label","type":"String"},"apiName":{"name":"api_name","type":"String"},"name":{"name":"name","type":"String"},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long","primary":true}},"com\\zoho\\crm\\api\\tags\\GetRecordCountForTagParam":{"module":{"name":"module","type":"String","required":true}},"com\\zoho\\crm\\api\\variablegroups\\APIException":{"code":{"values":["INTERNAL_ERROR","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\record\\GetRecordsParam":{"cvid":{"name":"cvid","type":"String"},"endDateTime":{"name":"endDateTime","type":"DateTime"},"includeChild":{"name":"include_child","type":"String"},"uid":{"name":"uid","type":"String"},"approved":{"name":"approved","type":"String"},"perPage":{"name":"per_page","type":"Integer"},"startDateTime":{"name":"startDateTime","type":"DateTime"},"converted":{"name":"converted","type":"String"},"sortOrder":{"name":"sort_order","type":"String"},"ids":{"name":"ids","type":"Long","required":true},"territoryId":{"name":"territory_id","type":"String"},"sortBy":{"name":"sort_by","type":"String"},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"String"}},"com\\zoho\\crm\\api\\taxes\\Tax":{"displayLabel":{"name":"display_label","type":"String"},"sequenceNumber":{"name":"sequence_number","type":"Integer"},"name":{"name":"name","type":"String","required":true},"id":{"name":"id","type":"Long","primary":true},"value":{"name":"value","type":"Float","required":true}},"com\\zoho\\crm\\api\\contactroles\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\contactroles\\SuccessResponse","com\\zoho\\crm\\api\\contactroles\\APIException"],"interface":true},"com\\zoho\\crm\\api\\record\\RemindAt":{"alarm":{"name":"ALARM","type":"String","required":true}},"com\\zoho\\crm\\api\\sharerecords\\ResponseWrapper":{"share":{"structure_name":"com\\zoho\\crm\\api\\sharerecords\\ShareRecord","name":"share","type":"List"},"shareableUser":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"shareable_user","type":"List"}},"com\\zoho\\crm\\api\\bulkwrite\\FileBodyWrapper":{"file":{"name":"file","type":"com\\zoho\\crm\\api\\util\\StreamWrapper","required":true}},"com\\zoho\\crm\\api\\record\\MassUpdateActionWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\record\\MassUpdateActionResponse","name":"data","type":"List"}},"com\\zoho\\crm\\api\\fields\\RelatedDetails":{"displayLabel":{"name":"display_label","type":"String"},"apiName":{"name":"api_name","type":"String"},"module":{"structure_name":"com\\zoho\\crm\\api\\fields\\Module","name":"module","type":"com\\zoho\\crm\\api\\fields\\Module"},"id":{"name":"id","type":"Long"},"type":{"name":"_type","type":"String"}},"com\\zoho\\crm\\api\\fields\\ToolTip":{"name":{"name":"name","type":"String"},"value":{"name":"value","type":"String"}},"com\\zoho\\crm\\api\\fields\\GetFieldsParam":{"module":{"name":"module","type":"String"},"type":{"name":"type","type":"String"}},"com\\zoho\\crm\\api\\attachments\\UploadLinkAttachmentParam":{"attachmentUrl":{"name":"attachmentUrl","type":"String"}},"com\\zoho\\crm\\api\\record\\Consent":{"owner":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Owner","type":"com\\zoho\\crm\\api\\users\\User"},"mailSentTime":{"name":"Mail_Sent_Time","type":"DateTime"},"consentThrough":{"name":"Consent_Through","type":"String"},"contactThroughSocial":{"name":"Contact_Through_Social","type":"Boolean"},"contactThroughPhone":{"name":"Contact_Through_Phone","type":"Boolean"},"contactThroughSurvey":{"name":"Contact_Through_Survey","type":"Boolean"},"consentDate":{"name":"Consent_Date","type":"Date"},"dataProcessingBasis":{"name":"Data_Processing_Basis","type":"String"},"contactThroughEmail":{"name":"Contact_Through_Email","type":"Boolean"},"consentRemarks":{"name":"Consent_Remarks","type":"String"}},"com\\zoho\\crm\\api\\record\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"duplicateField":{"name":"duplicate_field","type":"String"},"action":{"values":["insert","update"],"name":"action","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"Modified_Time","type":"DateTime"},{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Modified_By","type":"com\\zoho\\crm\\api\\users\\User"},{"name":"Created_Time","type":"DateTime"},{"name":"id","type":"Long"},{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Created_By","type":"com\\zoho\\crm\\api\\users\\User"}],"name":"details","type":"Map"},"message":{"values":["record updated","record deleted","record added","photo uploaded successfully","Photo deleted"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\record\\Territory":{"id":{"name":"id","type":"Long"},"includeChild":{"name":"include_child","type":"Boolean"}},"com\\zoho\\crm\\api\\blueprint\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["transition updated successfully"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\sharerecords\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\sharerecords\\SuccessResponse","com\\zoho\\crm\\api\\sharerecords\\APIException"],"interface":true},"com\\zoho\\crm\\api\\currencies\\Format":{"thousandSeparator":{"values":["Period","Comma","Space"],"name":"thousand_separator","type":"com\\zoho\\crm\\api\\util\\Choice","required":true},"decimalPlaces":{"required_in_update":true,"values":["0","2","3"],"name":"decimal_places","type":"com\\zoho\\crm\\api\\util\\Choice","required":true},"decimalSeparator":{"values":["Period","Comma"],"name":"decimal_separator","type":"com\\zoho\\crm\\api\\util\\Choice","required":true}},"com\\zoho\\crm\\api\\notes\\GetNoteHeader":{"IfModifiedSince":{"name":"If-Modified-Since","type":"DateTime","required":true}},"com\\zoho\\crm\\api\\modules\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\modules\\APIException","com\\zoho\\crm\\api\\modules\\ResponseWrapper"],"interface":true},"com\\zoho\\crm\\api\\currencies\\ActionWrapper":{"currencies":{"structure_name":"com\\zoho\\crm\\api\\currencies\\ActionResponse","name":"currencies","type":"List"}},"com\\zoho\\crm\\api\\currencies\\BaseCurrencyActionWrapper":{"baseCurrency":{"structure_name":"com\\zoho\\crm\\api\\currencies\\ActionResponse","name":"base_currency","interface":true,"type":"com\\zoho\\crm\\api\\currencies\\ActionResponse"}},"com\\zoho\\crm\\api\\notes\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\notes\\SuccessResponse","com\\zoho\\crm\\api\\notes\\APIException"],"interface":true},"com\\zoho\\crm\\api\\notes\\GetNoteParam":{"fields":{"name":"fields","type":"String"}},"com\\zoho\\crm\\api\\modules\\GetModulesHeader":{"IfModifiedSince":{"name":"If-Modified-Since","type":"DateTime"}},"com\\zoho\\crm\\api\\contactroles\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["contact role added","contact role updated","contact role deleted"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\currencies\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\currencies\\SuccessResponse","com\\zoho\\crm\\api\\currencies\\APIException"],"interface":true},"com\\zoho\\crm\\api\\tags\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\tags\\ActionWrapper","com\\zoho\\crm\\api\\tags\\APIException"],"interface":true},"com\\zoho\\crm\\api\\fields\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\fields\\ResponseWrapper","com\\zoho\\crm\\api\\fields\\APIException"],"interface":true},"com\\zoho\\crm\\api\\notes\\APIException":{"code":{"values":["NO_PERMISSION","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INTERNAL_ERROR","MANDATORY_NOT_FOUND","INVALID_DATA","NOT_SUPPORTED","REQUIRED_PARAM_MISSING"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"api_name","type":"String"},{"name":"param","type":"String"},{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","the id given seems to be invalid","One of the expected parameter is missing","record not deleted","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\relatedrecords\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\relatedrecords\\APIException","com\\zoho\\crm\\api\\relatedrecords\\ResponseWrapper","com\\zoho\\crm\\api\\relatedrecords\\FileBodyWrapper"],"interface":true},"com\\zoho\\crm\\api\\users\\ResponseWrapper":{"users":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"users","type":"List"},"info":{"structure_name":"com\\zoho\\crm\\api\\users\\Info","name":"info","type":"com\\zoho\\crm\\api\\users\\Info"}},"com\\zoho\\crm\\api\\notes\\DeleteNotesParam":{"ids":{"name":"ids","type":"Long","required":true}}} \ No newline at end of file +{"com\\zoho\\crm\\api\\file\\BodyWrapper":{"file":{"name":"file","max-length":10,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\record\\BodyWrapper":{"process":{"name":"process","type":"List"},"data":{"structure_name":"com\\zoho\\crm\\api\\record\\Record","name":"data","max-length":100,"type":"List","required":true,"min-length":1},"larId":{"name":"lar_id","type":"String"},"wfTrigger":{"name":"wf_trigger","type":"String"},"trigger":{"name":"trigger","type":"List"},"duplicateCheckFields":{"name":"duplicate_check_fields","type":"List"}},"com\\zoho\\crm\\api\\fields\\AutoNumber":{"startNumber":{"name":"start_number","type":"Integer"},"prefix":{"name":"prefix","type":"String"},"suffix":{"name":"suffix","type":"String"}},"com\\zoho\\crm\\api\\notification\\APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","INTERNAL_ERROR","NOT_SUBSCRIBED"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"maximum_length","type":"Integer"},{"name":"param","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","the module name given seems to be invalid","duplicate data","Not subscribed for actions-watch of the given module/channel","required field not found","invalid data","Not subscribed for actions-watch of the given channel","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\users\\GetUserHeader":{"IfModifiedSince":{"name":"If-Modified-Since","type":"DateTime"}},"com\\zoho\\crm\\api\\file\\GetFileParam":{"id":{"name":"id","type":"String","required":true}},"com\\zoho\\crm\\api\\record\\ResponseWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\record\\Record","name":"data","type":"List"},"info":{"structure_name":"com\\zoho\\crm\\api\\record\\Info","name":"info","type":"com\\zoho\\crm\\api\\record\\Info"}},"com\\zoho\\crm\\api\\record\\ConvertActionResponse":{"classes":["com\\zoho\\crm\\api\\record\\APIException","com\\zoho\\crm\\api\\record\\SuccessfulConvert"],"interface":true},"com\\zoho\\crm\\api\\relatedlists\\GetRelatedListsParam":{"module":{"name":"module","type":"String"}},"com\\zoho\\crm\\api\\profiles\\Category":{"displayLabel":{"name":"display_label","type":"String"},"permissionsDetails":{"name":"permissions_details","type":"List"},"name":{"name":"name","type":"String"}},"com\\zoho\\crm\\api\\users\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\users\\ResponseWrapper","com\\zoho\\crm\\api\\users\\APIException"],"interface":true},"com\\zoho\\crm\\api\\tags\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"created_time","type":"DateTime"},{"name":"modified_time","type":"DateTime"},{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"modified_by","type":"com\\zoho\\crm\\api\\users\\User"},{"name":"id","type":"Long"},{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_by","type":"com\\zoho\\crm\\api\\users\\User"},{"name":"tags","type":"List"}],"name":"details","type":"Map"},"message":{"values":["tags created successfully","tags updated successfully","tags deleted successfully"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\record\\MassUpdateResponseWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\record\\MassUpdateResponse","name":"data","type":"List"}},"com\\zoho\\crm\\api\\org\\ResponseWrapper":{"org":{"structure_name":"com\\zoho\\crm\\api\\org\\Org","name":"org","type":"List"}},"com\\zoho\\crm\\api\\users\\Territory":{"manager":{"name":"manager","type":"Boolean"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com\\zoho\\crm\\api\\fields\\AssociationDetails":{"lookupField":{"structure_name":"com\\zoho\\crm\\api\\fields\\LookupField","name":"lookup_field","type":"com\\zoho\\crm\\api\\fields\\LookupField"},"relatedField":{"structure_name":"com\\zoho\\crm\\api\\fields\\LookupField","name":"related_field","type":"com\\zoho\\crm\\api\\fields\\LookupField"}},"com\\zoho\\crm\\api\\record\\ActionWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\record\\ActionResponse","name":"data","type":"List"}},"com\\zoho\\crm\\api\\relatedrecords\\ResponseWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\record\\Record","name":"data","type":"List"},"info":{"structure_name":"com\\zoho\\crm\\api\\record\\Info","name":"info","type":"com\\zoho\\crm\\api\\record\\Info"}},"com\\zoho\\crm\\api\\users\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\users\\SuccessResponse","com\\zoho\\crm\\api\\users\\APIException"],"interface":true},"com\\zoho\\crm\\api\\record\\Record":{"modifiedTime":{"name":"Modified_Time","type":"DateTime"},"createdBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Created_By","type":"com\\zoho\\crm\\api\\users\\User"},"createdTime":{"name":"Created_Time","type":"DateTime"},"modifiedBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Modified_By","type":"com\\zoho\\crm\\api\\users\\User"},"id":{"name":"id","type":"Long","primary":true},"tag":{"structure_name":"com\\zoho\\crm\\api\\tags\\Tag","name":"Tag","type":"List","skip_mandatory":true}},"com\\zoho\\crm\\api\\relatedrecords\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\relatedrecords\\APIException","com\\zoho\\crm\\api\\relatedrecords\\ActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\sharerecords\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["record will be shared successfully","Sharing Revoked"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\fields\\ResponseWrapper":{"fields":{"structure_name":"com\\zoho\\crm\\api\\fields\\Field","name":"fields","type":"List"}},"com\\zoho\\crm\\api\\customviews\\SharedDetails":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"type":{"name":"type","type":"String"},"subordinates":{"name":"subordinates","type":"Boolean"}},"com\\zoho\\crm\\api\\customviews\\GetCustomViewParam":{"module":{"name":"module","type":"String"}},"com\\zoho\\crm\\api\\currencies\\ResponseWrapper":{"currencies":{"structure_name":"com\\zoho\\crm\\api\\currencies\\Currency","name":"currencies","type":"List"}},"com\\zoho\\crm\\api\\layouts\\ResponseWrapper":{"layouts":{"structure_name":"com\\zoho\\crm\\api\\layouts\\Layout","name":"layouts","type":"List"}},"com\\zoho\\crm\\api\\record\\GetRecordsHeader":{"IfModifiedSince":{"name":"If-Modified-Since","type":"DateTime"},"XEXTERNAL":{"name":"X-EXTERNAL","type":"String"}},"com\\zoho\\crm\\api\\modules\\ActionWrapper":{"modules":{"structure_name":"com\\zoho\\crm\\api\\modules\\ActionResponse","name":"modules","type":"List"}},"com\\zoho\\crm\\api\\record\\RecurringActivity":{"rrule":{"name":"RRULE","type":"String","required":true}},"com\\zoho\\crm\\api\\relatedlists\\ResponseWrapper":{"relatedLists":{"structure_name":"com\\zoho\\crm\\api\\relatedlists\\RelatedList","name":"related_lists","type":"List"}},"com\\zoho\\crm\\api\\record\\DownloadHandler":{"classes":["com\\zoho\\crm\\api\\record\\APIException","com\\zoho\\crm\\api\\record\\FileBodyWrapper"],"interface":true},"com\\zoho\\crm\\api\\attachments\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\attachments\\SuccessResponse","com\\zoho\\crm\\api\\attachments\\APIException"],"interface":true},"com\\zoho\\crm\\api\\notification\\ResponseWrapper":{"watch":{"structure_name":"com\\zoho\\crm\\api\\notification\\Notification","name":"watch","type":"List"},"info":{"structure_name":"com\\zoho\\crm\\api\\notification\\Info","name":"info","type":"com\\zoho\\crm\\api\\notification\\Info"}},"com\\zoho\\crm\\api\\bulkwrite\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\bulkwrite\\APIException","com\\zoho\\crm\\api\\bulkwrite\\FileBodyWrapper"],"interface":true},"com\\zoho\\crm\\api\\bulkwrite\\Result":{"downloadUrl":{"name":"download_url","type":"String"}},"com\\zoho\\crm\\api\\bulkread\\ResponseWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\bulkread\\JobDetail","name":"data","type":"List"}},"com\\zoho\\crm\\api\\file\\FileBodyWrapper":{"file":{"name":"file","type":"com\\zoho\\crm\\api\\util\\StreamWrapper","required":true}},"com\\zoho\\crm\\api\\tags\\APIException":{"code":{"values":["REQUIRED_PARAM_MISSING","MANDATORY_NOT_FOUND","INVALID_MODULE","DUPLICATE_DATA","TAG_ID_NOT_FOUND","FAILURE","INTERNAL_ERROR","NO_PERMISSION","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","LICENSE_LIMIT_EXCEEDED"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"param","type":"String"},{"name":"permissions","type":"List"},{"name":"maximum_length","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["tags not found","special characters found in the given name","One of the expected parameter is missing","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Internal server error occurred.","The relation name given seems to be invalid","duplicate data","tag edition limit exceeded","invalid data","tags not updated successfully"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\record\\LineItemProduct":{"productCode":{"name":"Product_Code","type":"String"},"name":{"name":"name","type":"String"},"currency":{"name":"Currency","type":"String"}},"com\\zoho\\crm\\api\\org\\Org":{"country":{"name":"country","type":"String"},"city":{"name":"city","type":"String"},"companyName":{"name":"company_name","type":"String"},"description":{"name":"description","type":"String"},"gappsEnabled":{"name":"gapps_enabled","type":"Boolean"},"ziaPortalId":{"name":"zia_portal_id","type":"String"},"employeeCount":{"name":"employee_count","type":"String"},"street":{"name":"street","type":"String"},"countryCode":{"name":"country_code","type":"String"},"currencyLocale":{"name":"currency_locale","type":"String"},"alias":{"name":"alias","type":"String"},"currency":{"name":"currency","type":"String"},"id":{"name":"id","type":"Long","primary":true},"state":{"name":"state","type":"String"},"fax":{"name":"fax","type":"String"},"primaryEmail":{"name":"primary_email","type":"String"},"zip":{"name":"zip","type":"String"},"website":{"name":"website","type":"String"},"mobile":{"name":"mobile","type":"String"},"photoId":{"name":"photo_id","type":"String"},"translationEnabled":{"name":"translation_enabled","type":"Boolean"},"currencySymbol":{"name":"currency_symbol","type":"String"},"timeZone":{"name":"time_zone","type":"String"},"privacySettings":{"name":"privacy_settings","type":"Boolean"},"zgid":{"name":"zgid","type":"String"},"licenseDetails":{"structure_name":"com\\zoho\\crm\\api\\org\\LicenseDetails","name":"license_details","type":"com\\zoho\\crm\\api\\org\\LicenseDetails"},"mcStatus":{"name":"mc_status","type":"Boolean"},"primaryZuid":{"name":"primary_zuid","type":"String"},"phone":{"name":"phone","type":"String"},"isoCode":{"name":"iso_code","type":"String"},"domainName":{"name":"domain_name","type":"String"}},"com\\zoho\\crm\\api\\territories\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\territories\\APIException","com\\zoho\\crm\\api\\territories\\ResponseWrapper"],"interface":true},"com\\zoho\\crm\\api\\relatedrecords\\DelinkRecordsParam":{"ids":{"name":"ids","type":"Long","required":true}},"com\\zoho\\crm\\api\\profiles\\GetProfileHeader":{"ifModifiedSince":{"name":"If-Modified-Since","type":"DateTime"}},"com\\zoho\\crm\\api\\tags\\BodyWrapper":{"tags":{"structure_name":"com\\zoho\\crm\\api\\tags\\Tag","name":"tags","type":"List","required":true}},"com\\zoho\\crm\\api\\attachments\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\attachments\\APIException","com\\zoho\\crm\\api\\attachments\\ActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\record\\DeletedRecord":{"createdBy":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_by","type":"com\\zoho\\crm\\api\\users\\User"},"displayName":{"name":"display_name","type":"String"},"id":{"name":"id","type":"Long","primary":true},"type":{"name":"type","type":"String"},"deletedTime":{"name":"deleted_time","type":"DateTime"},"deletedBy":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"deleted_by","type":"com\\zoho\\crm\\api\\users\\User"}},"com\\zoho\\crm\\api\\record\\DeleteRecordsHeader":{"XEXTERNAL":{"name":"X-EXTERNAL","type":"String"}},"com\\zoho\\crm\\api\\record\\LeadConverter":{"notifyLeadOwner":{"name":"notify_lead_owner","type":"Boolean"},"notifyNewEntityOwner":{"name":"notify_new_entity_owner","type":"Boolean"},"deals":{"structure_name":"com\\zoho\\crm\\api\\record\\Record","module":"Deals","name":"Deals","type":"com\\zoho\\crm\\api\\record\\Record"},"accounts":{"name":"Accounts","type":"String"},"carryOverTags":{"structure_name":"com\\zoho\\crm\\api\\record\\CarryOverTags","name":"carry_over_tags","type":"com\\zoho\\crm\\api\\record\\CarryOverTags"},"overwrite":{"name":"overwrite","type":"Boolean"},"contacts":{"name":"Contacts","type":"String"},"assignTo":{"name":"assign_to","type":"String"}},"com\\zoho\\crm\\api\\record\\FileBodyWrapper":{"file":{"name":"file","type":"com\\zoho\\crm\\api\\util\\StreamWrapper","required":true}},"com\\zoho\\crm\\api\\tags\\RecordActionWrapper":{"lockedCount":{"name":"locked_count","type":"Integer"},"data":{"structure_name":"com\\zoho\\crm\\api\\tags\\RecordActionResponse","name":"data","type":"List"},"successCount":{"name":"success_count","type":"String"},"wfScheduler":{"name":"wf_scheduler","type":"Boolean"}},"com\\zoho\\crm\\api\\record\\DeletedRecordsWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\record\\DeletedRecord","name":"data","type":"List"},"info":{"structure_name":"com\\zoho\\crm\\api\\record\\Info","name":"info","type":"com\\zoho\\crm\\api\\record\\Info"}},"com\\zoho\\crm\\api\\org\\FileBodyWrapper":{"file":{"name":"file","type":"com\\zoho\\crm\\api\\util\\StreamWrapper","required":true}},"com\\zoho\\crm\\api\\users\\TabTheme":{"background":{"name":"background","type":"String"},"fontColor":{"name":"font_color","type":"String"}},"com\\zoho\\crm\\api\\notes\\Note":{"owner":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Owner","type":"com\\zoho\\crm\\api\\users\\User"},"modifiedTime":{"name":"Modified_Time","type":"DateTime"},"noteTitle":{"name":"Note_Title","type":"String"},"noteContent":{"name":"Note_Content","type":"String","required":true},"attachments":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\attachments\\Attachment","name":"$attachments","type":"List"},"voiceNote":{"name":"$voice_note","type":"Boolean"},"editable":{"name":"$editable","type":"Boolean"},"isSharedToClient":{"name":"$is_shared_to_client","type":"Boolean"},"parentId":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\record\\Record","name":"Parent_Id","type":"com\\zoho\\crm\\api\\record\\Record","required":true},"seModule":{"name":"$se_module","type":"String","required":true},"size":{"name":"$size","type":"String"},"createdBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Created_By","type":"com\\zoho\\crm\\api\\users\\User"},"createdTime":{"name":"Created_Time","type":"DateTime"},"modifiedBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Modified_By","type":"com\\zoho\\crm\\api\\users\\User"},"state":{"name":"$state","type":"String"},"id":{"name":"id","type":"Long","primary":true}},"com\\zoho\\crm\\api\\profiles\\APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INTERNAL_ERROR"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\relatedrecords\\GetRelatedRecordHeader":{"IfModifiedSince":{"name":"If-Modified-Since","type":"DateTime"}},"com\\zoho\\crm\\api\\notes\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"Modified_Time","type":"DateTime"},{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Modified_By","type":"com\\zoho\\crm\\api\\users\\User"},{"name":"Created_Time","type":"DateTime"},{"name":"id","type":"Long"},{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Created_By","type":"com\\zoho\\crm\\api\\users\\User"}],"name":"details","type":"Map"},"message":{"values":["record added","record updated","record deleted"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\tags\\CountWrapper":{"count":{"name":"count","type":"String"}},"com\\zoho\\crm\\api\\notification\\BodyWrapper":{"watch":{"structure_name":"com\\zoho\\crm\\api\\notification\\Notification","name":"watch","max-length":100,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\variables\\Variable":{"apiName":{"required_in_update":false,"name":"api_name","type":"String","primary":true},"variableGroup":{"structure_name":"com\\zoho\\crm\\api\\variablegroups\\VariableGroup","name":"variable_group","type":"com\\zoho\\crm\\api\\variablegroups\\VariableGroup","skip_mandatory":true,"required":true},"name":{"name":"name","type":"String","required":true},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long","primary":true},"type":{"name":"type","type":"String","required":true},"value":{"name":"value","type":"Object"}},"com\\zoho\\crm\\api\\record\\ConvertActionWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\record\\ConvertActionResponse","name":"data","type":"List"}},"com\\zoho\\crm\\api\\blueprint\\BodyWrapper":{"blueprint":{"structure_name":"com\\zoho\\crm\\api\\blueprint\\BluePrint","name":"blueprint","max-length":1,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\roles\\ResponseWrapper":{"roles":{"structure_name":"com\\zoho\\crm\\api\\roles\\Role","name":"roles","type":"List"}},"com\\zoho\\crm\\api\\sharerecords\\APIException":{"code":{"values":["NO_PERMISSION","BAD_REQUEST","INVALID_MODULE","SHARE_LIMIT_EXCEEDED","OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","ENTITY_ID_INVALID"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"permissions","type":"List"}],"name":"details","type":"Map"},"message":{"values":["Scheduler is running","cannot share to the user","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Internal server error occurred.","The relation name given seems to be invalid.","invalid oauth scope to access this URL","Please check if the URL trying to access is a correct one.","Permission is invalid","record is already visible to the user.","Cannot share a record to more than 10 users.","No sharing through this record is available to revoke.","ENTITY_ID_INVALID"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\record\\MassUpdateActionResponse":{"classes":["com\\zoho\\crm\\api\\record\\APIException","com\\zoho\\crm\\api\\record\\MassUpdateSuccessResponse"],"interface":true},"com\\zoho\\crm\\api\\file\\ActionWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\file\\ActionResponse","name":"data","type":"List"}},"com\\zoho\\crm\\api\\record\\MassUpdate":{"failedCount":{"name":"Failed_Count","type":"Integer"},"updatedCount":{"name":"Updated_Count","type":"Integer"},"notUpdatedCount":{"name":"Not_Updated_Count","type":"Integer"},"totalCount":{"name":"Total_Count","type":"Integer"},"status":{"values":["COMPLETED","SCHEDULED","RUNNING","FAILED"],"name":"Status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\bulkread\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\bulkread\\ResponseWrapper","com\\zoho\\crm\\api\\bulkread\\APIException","com\\zoho\\crm\\api\\bulkread\\FileBodyWrapper"],"interface":true},"com\\zoho\\crm\\api\\query\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\query\\ResponseWrapper","com\\zoho\\crm\\api\\query\\APIException"],"interface":true},"com\\zoho\\crm\\api\\taxes\\Preference":{"modifyTaxRates":{"name":"modify_tax_rates","type":"Boolean"},"autoPopulateTax":{"name":"auto_populate_tax","type":"Boolean"}},"com\\zoho\\crm\\api\\customviews\\CustomView":{"criteria":{"structure_name":"com\\zoho\\crm\\api\\customviews\\Criteria","name":"criteria","type":"com\\zoho\\crm\\api\\customviews\\Criteria"},"displayValue":{"name":"display_value","type":"String"},"offline":{"name":"offline","type":"Boolean"},"default":{"name":"default","type":"Boolean"},"systemName":{"name":"system_name","type":"String"},"sortOrder":{"name":"sort_order","type":"String"},"sharedDetails":{"structure_name":"com\\zoho\\crm\\api\\customviews\\SharedDetails","name":"shared_details","type":"List"},"name":{"name":"name","type":"String"},"sharedType":{"name":"shared_type","type":"String"},"sortBy":{"name":"sort_by","type":"String"},"id":{"name":"id","type":"Long","primary":true},"category":{"name":"category","type":"String"},"systemDefined":{"name":"system_defined","type":"Boolean"},"fields":{"name":"fields","type":"List"},"favorite":{"name":"favorite","type":"Integer"}},"com\\zoho\\crm\\api\\taxes\\APIException":{"code":{"values":["OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","MANDATORY_NOT_FOUND","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"name","type":"String"},{"name":"value","type":"String"},{"name":"maximum_length","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","required field not found","Sequence number out of range","Sequence number cannot be repeated in same request","Given ID does not exist","tax not deleted"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\bulkwrite\\CallBack":{"method":{"values":["post"],"name":"method","type":"com\\zoho\\crm\\api\\util\\Choice","required":true},"url":{"name":"url","type":"String","required":true}},"com\\zoho\\crm\\api\\record\\DeleteRecordsParam":{"ids":{"name":"ids","type":"Long","required":true},"wfTrigger":{"name":"wf_trigger","type":"String"}},"com\\zoho\\crm\\api\\modules\\RelatedListProperties":{"sortOrder":{"name":"sort_order","type":"String"},"sortBy":{"name":"sort_by","type":"String"},"fields":{"name":"fields","type":"List"}},"com\\zoho\\crm\\api\\taxes\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"name","type":"String"},{"name":"value","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["tax added","record updated","tax deleted"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\sharerecords\\DeleteActionHandler":{"classes":["com\\zoho\\crm\\api\\sharerecords\\APIException","com\\zoho\\crm\\api\\sharerecords\\DeleteActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\roles\\Role":{"displayLabel":{"name":"display_label","type":"String"},"forecastManager":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"forecast_manager","type":"com\\zoho\\crm\\api\\users\\User"},"adminUser":{"name":"admin_user","type":"Boolean"},"shareWithPeers":{"name":"share_with_peers","type":"Boolean"},"name":{"name":"name","type":"String"},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long","primary":true},"reportingTo":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"reporting_to","type":"com\\zoho\\crm\\api\\users\\User"}},"com\\zoho\\crm\\api\\tags\\CountHandler":{"classes":["com\\zoho\\crm\\api\\tags\\APIException","com\\zoho\\crm\\api\\tags\\CountWrapper"],"interface":true},"com\\zoho\\crm\\api\\notes\\GetNotesParam":{"perPage":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"String"}},"com\\zoho\\crm\\api\\relatedrecords\\GetRelatedRecordsHeader":{"IfModifiedSince":{"name":"If-Modified-Since","type":"DateTime"}},"com\\zoho\\crm\\api\\contactroles\\ContactRole":{"sequenceNumber":{"name":"sequence_number","type":"Integer"},"name":{"unique":true,"name":"name","type":"String","required":true},"id":{"name":"id","type":"Long","primary":true}},"com\\zoho\\crm\\api\\variables\\GetVariableForAPINameParam":{"group":{"name":"group","type":"String","required":true}},"com\\zoho\\crm\\api\\record\\ConvertActionHandler":{"classes":["com\\zoho\\crm\\api\\record\\ConvertActionWrapper","com\\zoho\\crm\\api\\record\\APIException"],"interface":true},"com\\zoho\\crm\\api\\bulkwrite\\RequestWrapper":{"resource":{"structure_name":"com\\zoho\\crm\\api\\bulkwrite\\Resource","name":"resource","type":"List","required":true},"callback":{"structure_name":"com\\zoho\\crm\\api\\bulkwrite\\CallBack","name":"callback","type":"com\\zoho\\crm\\api\\bulkwrite\\CallBack"},"characterEncoding":{"name":"character_encoding","type":"String"},"operation":{"values":["insert","update","upsert"],"name":"operation","type":"com\\zoho\\crm\\api\\util\\Choice","required":true}},"com\\zoho\\crm\\api\\notes\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\notes\\APIException","com\\zoho\\crm\\api\\notes\\ResponseWrapper"],"interface":true},"com\\zoho\\crm\\api\\blueprint\\Transition":{"executionTime":{"name":"execution_time","type":"DateTime"},"criteriaMatched":{"name":"criteria_matched","type":"Boolean"},"percentPartialSave":{"name":"percent_partial_save","type":"Float"},"data":{"structure_name":"com\\zoho\\crm\\api\\record\\Record","name":"data","type":"com\\zoho\\crm\\api\\record\\Record","skip_mandatory":true},"nextTransitions":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\blueprint\\NextTransition","name":"next_transitions","type":"List"},"name":{"name":"name","type":"String"},"criteriaMessage":{"name":"criteria_message","type":"String"},"nextFieldValue":{"name":"next_field_value","type":"String"},"id":{"name":"id","type":"Long"},"fields":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\fields\\Field","name":"fields","type":"List"},"type":{"name":"type","type":"String"}},"com\\zoho\\crm\\api\\users\\BodyWrapper":{"users":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"users","max-length":100,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\bulkwrite\\SuccessResponse":{"code":{"values":["FILE_UPLOAD_SUCCESS","SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"file_id","type":"Long"},{"name":"created_time","type":"DateTime"},{"name":"id","type":"Long"},{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_by","type":"com\\zoho\\crm\\api\\users\\User"}],"name":"details","type":"Map"},"message":{"values":["file uploaded.","success"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\record\\LineTax":{"percentage":{"name":"percentage","type":"Float"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"value":{"name":"value","type":"Float"}},"com\\zoho\\crm\\api\\currencies\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\currencies\\ResponseWrapper","com\\zoho\\crm\\api\\currencies\\APIException"],"interface":true},"com\\zoho\\crm\\api\\attachments\\APIException":{"code":{"values":["NO_PERMISSION","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"id","type":"Long"},{"name":"resource_path_index","type":"Integer"},{"name":"related_status","type":"String"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["As it is a linked attachment"," you can not download it","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Attachment link already exists","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\file\\UploadFilesParam":{"type":{"name":"type","type":"String","required":true}},"com\\zoho\\crm\\api\\layouts\\Layout":{"modifiedTime":{"name":"modified_time","type":"DateTime"},"createdFor":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_for","type":"com\\zoho\\crm\\api\\users\\User"},"visible":{"name":"visible","type":"Boolean"},"createdBy":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_by","type":"com\\zoho\\crm\\api\\users\\User"},"name":{"name":"name","type":"String"},"profiles":{"structure_name":"com\\zoho\\crm\\api\\profiles\\Profile","name":"profiles","type":"List"},"createdTime":{"name":"created_time","type":"DateTime"},"modifiedBy":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"modified_by","type":"com\\zoho\\crm\\api\\users\\User"},"id":{"name":"id","type":"Long","primary":true},"sections":{"structure_name":"com\\zoho\\crm\\api\\layouts\\Section","name":"sections","type":"List"},"convertMapping":{"name":"convert_mapping","type":"Map"},"status":{"name":"status","type":"Integer"}},"com\\zoho\\crm\\api\\layouts\\GetLayoutsParam":{"module":{"name":"module","type":"String"}},"com\\zoho\\crm\\api\\blueprint\\APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","RECORD_NOT_IN_PROCESS","INTERNAL_ERROR"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"message","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"info_message","type":"String"},{"name":"parent_api_name","type":"String"},{"structure_name":"com\\zoho\\crm\\api\\blueprint\\ValidationError","name":"validation_error","type":"List"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","invalid transition","invalid data","record not in process","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\sharerecords\\ShareRecord":{"shareRelatedRecords":{"name":"share_related_records","type":"Boolean"},"sharedThrough":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\sharerecords\\SharedThrough","name":"shared_through","type":"com\\zoho\\crm\\api\\sharerecords\\SharedThrough"},"sharedTime":{"name":"shared_time","type":"DateTime"},"sharedBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"shared_by","type":"com\\zoho\\crm\\api\\users\\User"},"permission":{"required_in_update":true,"name":"permission","type":"String","required":true},"user":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","required_in_update":true,"name":"user","type":"com\\zoho\\crm\\api\\users\\User","required":true}},"com\\zoho\\crm\\api\\bulkread\\RequestWrapper":{"query":{"structure_name":"com\\zoho\\crm\\api\\bulkread\\Query","name":"query","type":"com\\zoho\\crm\\api\\bulkread\\Query","required":true},"callback":{"structure_name":"com\\zoho\\crm\\api\\bulkread\\CallBack","name":"callback","type":"com\\zoho\\crm\\api\\bulkread\\CallBack"},"fileType":{"values":["ics","csv"],"name":"file_type","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\sharerecords\\DeleteActionWrapper":{"share":{"structure_name":"com\\zoho\\crm\\api\\sharerecords\\DeleteActionResponse","name":"share","interface":true,"type":"com\\zoho\\crm\\api\\sharerecords\\DeleteActionResponse"}},"com\\zoho\\crm\\api\\currencies\\APIException":{"code":{"values":["OAUTH_SCOPE_MISMATCH","ALREADY_ENABLED","FEATURE_NOT_ENABLED","NOT_ALLOWED","ACTIVE_STATE_LIMIT_EXCEEDED","INTERNAL_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","CURRENCIES_NOT_ENABLED","FEATURE_NOT_SUPPORTED","No Content"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"expected_data_type","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one.","The http request method type is not a valid one","The module name given seems to be invalid","The multi-currency is already enabled","Currency name is invalid.","ISO code is invalid.","Currency symbol is invalid.","The multi-currency feature is not available except the Enterprise and higher editions.","Required field not found.","unable to process your request. please verify whether you have entered proper method name"," parameter and parameter values.","Currency symbol is invalid.","Multi currency is not enabled","No Content","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\taxes\\DeleteTaxesParam":{"ids":{"name":"ids","type":"Long","required":true}},"com\\zoho\\crm\\api\\record\\CarryOverTags":{"deals":{"name":"Deals","type":"List"},"accounts":{"name":"Accounts","type":"List"},"contacts":{"name":"Contacts","type":"List"}},"com\\zoho\\crm\\api\\bulkwrite\\ResponseWrapper":{"classes":["com\\zoho\\crm\\api\\bulkwrite\\APIException","com\\zoho\\crm\\api\\bulkwrite\\BulkWriteResponse"],"interface":true},"com\\zoho\\crm\\api\\taxes\\BodyWrapper":{"taxes":{"structure_name":"com\\zoho\\crm\\api\\taxes\\Tax","name":"taxes","max-length":100,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\record\\Participants":{"name":{"name":"name","type":"String"},"invited":{"name":"invited","type":"Boolean"},"type":{"name":"type","type":"String","required":true},"email":{"name":"Email","type":"String"},"participant":{"name":"participant","type":"String","required":true},"status":{"name":"status","type":"String"}},"com\\zoho\\crm\\api\\taxes\\ActionWrapper":{"taxes":{"structure_name":"com\\zoho\\crm\\api\\taxes\\ActionResponse","name":"taxes","type":"List"}},"com\\zoho\\crm\\api\\variables\\GetVariablesParam":{"group":{"name":"group","type":"String","required":true}},"com\\zoho\\crm\\api\\tags\\Info":{"count":{"name":"count","type":"Integer"},"allowedCount":{"name":"allowed_count","type":"Integer"}},"com\\zoho\\crm\\api\\record\\Criteria":{"comparator":{"values":["equal","not_equal","in","not_in","less_than","less_equal","greater_than","greater_equal","contains","not_contains","starts_with","ends_with","between","not_between"],"name":"comparator","type":"com\\zoho\\crm\\api\\util\\Choice"},"groupOperator":{"values":["and","or"],"name":"group_operator","type":"com\\zoho\\crm\\api\\util\\Choice"},"field":{"name":"field","type":"String"},"value":{"name":"value","type":"Object"},"group":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\record\\Criteria","name":"group","type":"List"}},"com\\zoho\\crm\\api\\variables\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\variables\\APIException","com\\zoho\\crm\\api\\variables\\SuccessResponse"],"interface":true},"com\\zoho\\crm\\api\\notes\\ActionWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\notes\\ActionResponse","name":"data","type":"List"}},"com\\zoho\\crm\\api\\blueprint\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\blueprint\\SuccessResponse","com\\zoho\\crm\\api\\blueprint\\APIException"],"interface":true},"com\\zoho\\crm\\api\\modules\\Argument":{"name":{"name":"name","type":"String"},"value":{"name":"value","type":"String"}},"com\\zoho\\crm\\api\\contactroles\\APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"limit","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","the module name given seems to be invalid","duplicate data","Contact Role feature limit exceeded","required field not found","invalid data","contact role not deleted","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\file\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\file\\ActionWrapper","com\\zoho\\crm\\api\\file\\APIException"],"interface":true},"com\\zoho\\crm\\api\\record\\APIException":{"code":{"values":["FEATURE_NOT_SUPPORTED","CONVERTED_RECORD","NOT_FOUND","NO_RECORDS_FOUND","NOT_APPROVED","LIMIT_EXCEEDED","ALREADY_SCHEDULED","CANNOT_PERFORM_ACTION","CANNOT_PROCESS","INTERNAL_ERROR","INVALID_TOKEN","INVALID_DATA","MANDATORY_NOT_FOUND","NO_PERMISSION","INVALID_MODULE","NOT_SUPPORTED","PATTERN_NOT_MATCHED","OAUTH_SCOPE_MISMATCH","DUPLICATE_DATA","INVALID_QUERY","MAPPING_MISMATCH","ID_ALREADY_CONVERTED","FILE_SIZE_MORE_THAN_ALLOWED_SIZE","RECORD_IN_BLUEPRINT","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","CANNOT_DELETE","REQUIRED_PARAM_MISSING","DATA_MISMATCH","RECORD_LOCKED"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"param_name","type":"String"},{"name":"api_name","type":"String"},{"name":"id","type":"Long"},{"name":"module","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"index","type":"Integer"},{"name":"maximum_length","type":"String"},{"name":"mapped_field","type":"String"},{"name":"reason","type":"String"},{"name":"operator","type":"String"},{"name":"allowed_count","type":"Integer"},{"name":"limit","type":"Integer"},{"name":"json_path","type":"String"},{"name":"parent_api_name","type":"String"},{"name":"param","type":"String"}],"name":"details","type":"Map"},"message":{"values":["the id given seems to be invalid.","Already an Mass Action scheduler is runing for the given cvid","Scheduled Mass Operation feature is not available in your edition","can't update the converted record","Field cannot be updated in Scheduled Mass Update","Field is not visible","Field cannot be updated as it is associated with a validation rule.","Field cannot be updated as it is associated with a layout rule.This field cannot be updated in the Mass Update","Max field limit exceeded","Maximum lookup field limit in criteria exceeded","No field found","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","Territory is not supported for the given module","Please check whether the input values are correct","invalid data","permission denied","Internal server error occurred.","duplicate data","required field not found","Layout doesn't contain the Pipeline","Pipeline doesn't contain the Stage","the id given seems to be invalid","record not deleted","record not deletable","Authentication failed","One of the expected parameter is missing","mandatory param missing","invalid query formed","id already converted","body","given id is invalid","Already a Mass Action scheduler is running for the given cvid","The record is in stop processing","The record is in blue print","no permission to perform an action on this record","Record count exceeded","record not approved","no record found to update","Field Edit Permission not given","Customview not accessible","Empty response","give contact id is mismatched with the data","give account id is mismatched with the data"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\fields\\APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","INTERNAL_ERROR","REQUIRED_PARAM_MISSING"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"param","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","the given module is not supported for this api","Internal server error occurred.","the module name given seems to be invalid"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\bulkwrite\\Resource":{"file":{"structure_name":"com\\zoho\\crm\\api\\bulkwrite\\File","name":"file","type":"com\\zoho\\crm\\api\\bulkwrite\\File"},"module":{"name":"module","type":"String","required":true},"ignoreEmpty":{"name":"ignore_empty","type":"Boolean"},"findBy":{"name":"find_by","type":"String"},"fieldMappings":{"structure_name":"com\\zoho\\crm\\api\\bulkwrite\\FieldMapping","name":"field_mappings","type":"List"},"type":{"values":["data"],"name":"type","type":"com\\zoho\\crm\\api\\util\\Choice","required":true},"status":{"values":["ADDED","IN PROGRESS","COMPLETED","SKIPPED","FAILED"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"},"fileId":{"name":"file_id","type":"String","required":true}},"com\\zoho\\crm\\api\\contactroles\\ActionWrapper":{"contactRoles":{"structure_name":"com\\zoho\\crm\\api\\contactroles\\ActionResponse","name":"contact_roles","type":"List"}},"com\\zoho\\crm\\api\\customviews\\Translation":{"createdByMe":{"name":"created_by_me","type":"String"},"otherUsersViews":{"name":"other_users_views","type":"String"},"publicViews":{"name":"public_views","type":"String"},"sharedWithMe":{"name":"shared_with_me","type":"String"}},"com\\zoho\\crm\\api\\record\\SuccessfulConvert":{"deals":{"name":"Deals","type":"String"},"accounts":{"name":"Accounts","type":"String"},"contacts":{"name":"Contacts","type":"String"}},"com\\zoho\\crm\\api\\sharerecords\\BodyWrapper":{"share":{"structure_name":"com\\zoho\\crm\\api\\sharerecords\\ShareRecord","name":"share","max-length":10,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\blueprint\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\blueprint\\ResponseWrapper","com\\zoho\\crm\\api\\blueprint\\APIException"],"interface":true},"com\\zoho\\crm\\api\\fields\\GetFieldParam":{"module":{"name":"module","type":"String"}},"com\\zoho\\crm\\api\\roles\\APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Internal server error occurred.","The relation name given seems to be invalid"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\taxes\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\taxes\\APIException","com\\zoho\\crm\\api\\taxes\\ResponseWrapper"],"interface":true},"com\\zoho\\crm\\api\\sharerecords\\DeleteActionResponse":{"classes":["com\\zoho\\crm\\api\\sharerecords\\SuccessResponse","com\\zoho\\crm\\api\\sharerecords\\APIException"],"interface":true},"com\\zoho\\crm\\api\\record\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\record\\ResponseWrapper","com\\zoho\\crm\\api\\record\\APIException","com\\zoho\\crm\\api\\record\\FileBodyWrapper"],"interface":true},"com\\zoho\\crm\\api\\query\\BodyWrapper":{"selectQuery":{"name":"select_query","type":"String","required":true}},"com\\zoho\\crm\\api\\notes\\GetNotesHeader":{"IfModifiedSince":{"name":"If-Modified-Since","type":"DateTime","required":true}},"com\\zoho\\crm\\api\\record\\PricingDetails":{"discount":{"name":"discount","type":"Float","required":true},"toRange":{"name":"to_range","type":"Float","required":true},"fromRange":{"name":"from_range","type":"Float","required":true}},"com\\zoho\\crm\\api\\notification\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\notification\\APIException","com\\zoho\\crm\\api\\notification\\ActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\contactroles\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\contactroles\\ResponseWrapper","com\\zoho\\crm\\api\\contactroles\\APIException"],"interface":true},"com\\zoho\\crm\\api\\taxes\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\taxes\\SuccessResponse","com\\zoho\\crm\\api\\taxes\\APIException"],"interface":true},"com\\zoho\\crm\\api\\query\\APIException":{"code":{"values":["INVALID_QUERY","OAUTH_SCOPE_MISMATCH","SYNTAX_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","DUPLICATE_DATA","LIMIT_EXCEEDED","MANDATORY_NOT_FOUND","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"near","type":"String"},{"name":"column","type":"Integer"},{"name":"line","type":"Integer"},{"name":"clause","type":"String"},{"name":"by","type":"String"},{"name":"limit","type":"Integer"},{"name":"column_name","type":"String"},{"name":"reason","type":"String"},{"name":"module","type":"String"},{"name":"data_type","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"operator","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid query formed","value given seems to be invalid for the column","data type not supported","column given seems to be invalid","invalid oauth scope to access this URL","limit exceeded","given coql query not supported","select columns limit exceeded","join limit exceeded","missing clause","error occured while parsing the query","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","the module name given seems to be invalid","duplicate data","required field not found","invalid data","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\record\\DeletedRecordsHandler":{"classes":["com\\zoho\\crm\\api\\record\\APIException","com\\zoho\\crm\\api\\record\\DeletedRecordsWrapper"],"interface":true},"com\\zoho\\crm\\api\\fields\\Formula":{"expression":{"name":"expression","type":"String"},"returnType":{"name":"return_type","type":"String"}},"com\\zoho\\crm\\api\\bulkwrite\\BulkWriteResponse":{"result":{"structure_name":"com\\zoho\\crm\\api\\bulkwrite\\Result","name":"result","type":"com\\zoho\\crm\\api\\bulkwrite\\Result"},"resource":{"structure_name":"com\\zoho\\crm\\api\\bulkwrite\\Resource","name":"resource","type":"List"},"createdBy":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_by","type":"com\\zoho\\crm\\api\\users\\User"},"callback":{"structure_name":"com\\zoho\\crm\\api\\bulkwrite\\CallBack","name":"callback","type":"com\\zoho\\crm\\api\\bulkwrite\\CallBack"},"createdTime":{"name":"created_time","type":"DateTime"},"id":{"name":"id","type":"Long"},"characterEncoding":{"name":"character_encoding","type":"String"},"operation":{"name":"operation","type":"String"},"status":{"name":"status","type":"String"}},"com\\zoho\\crm\\api\\fields\\ViewType":{"view":{"name":"view","type":"Boolean"},"edit":{"name":"edit","type":"Boolean"},"quickCreate":{"name":"quick_create","type":"Boolean"},"create":{"name":"create","type":"Boolean"}},"com\\zoho\\crm\\api\\attachments\\Attachment":{"owner":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Owner","type":"com\\zoho\\crm\\api\\users\\User"},"modifiedTime":{"name":"Modified_Time","type":"DateTime"},"fileName":{"name":"File_Name","type":"String"},"editable":{"name":"$editable","type":"Boolean"},"description":{"name":"description","type":"String"},"type":{"name":"$type","type":"String"},"parentId":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\record\\Record","name":"Parent_Id","type":"com\\zoho\\crm\\api\\record\\Record"},"seModule":{"name":"$se_module","type":"String"},"size":{"name":"Size","type":"Long"},"createdBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Created_By","type":"com\\zoho\\crm\\api\\users\\User"},"linkUrl":{"name":"$link_url","type":"String"},"createdTime":{"name":"Created_Time","type":"DateTime"},"modifiedBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Modified_By","type":"com\\zoho\\crm\\api\\users\\User"},"state":{"name":"$state","type":"String"},"id":{"name":"id","type":"Long","primary":true},"category":{"name":"category","type":"String"},"fileId":{"name":"$file_id","type":"String"}},"com\\zoho\\crm\\api\\relatedlists\\GetRelatedListParam":{"module":{"name":"module","type":"String"}},"com\\zoho\\crm\\api\\relatedrecords\\BodyWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\record\\Record","name":"data","max-length":100,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\variables\\DeleteVariablesParam":{"ids":{"name":"ids","type":"Long","required":true}},"com\\zoho\\crm\\api\\record\\DeleteRecordHeader":{"XEXTERNAL":{"name":"X-EXTERNAL","type":"String"}},"com\\zoho\\crm\\api\\sharerecords\\ActionWrapper":{"share":{"structure_name":"com\\zoho\\crm\\api\\sharerecords\\ActionResponse","name":"share","type":"List"}},"com\\zoho\\crm\\api\\notification\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\notification\\SuccessResponse","com\\zoho\\crm\\api\\notification\\APIException"],"interface":true},"com\\zoho\\crm\\api\\profiles\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\profiles\\APIException","com\\zoho\\crm\\api\\profiles\\ResponseWrapper"],"interface":true},"com\\zoho\\crm\\api\\profiles\\PermissionDetail":{"displayLabel":{"name":"display_label","type":"String"},"module":{"name":"module","type":"String"},"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"enabled":{"name":"enabled","type":"Boolean"}},"com\\zoho\\crm\\api\\bulkread\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\bulkread\\SuccessResponse","com\\zoho\\crm\\api\\bulkread\\APIException"],"interface":true},"com\\zoho\\crm\\api\\tags\\Tag":{"modifiedTime":{"name":"modified_time","type":"DateTime"},"createdBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_by","type":"com\\zoho\\crm\\api\\users\\User"},"name":{"required_in_update":true,"name":"name","type":"String","required":true},"createdTime":{"name":"created_time","type":"DateTime"},"modifiedBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"modified_by","type":"com\\zoho\\crm\\api\\users\\User"},"id":{"name":"id","type":"Long","primary":true}},"com\\zoho\\crm\\api\\currencies\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\currencies\\ActionWrapper","com\\zoho\\crm\\api\\currencies\\APIException"],"interface":true},"com\\zoho\\crm\\api\\notification\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\notification\\APIException","com\\zoho\\crm\\api\\notification\\ResponseWrapper"],"interface":true},"com\\zoho\\crm\\api\\layouts\\GetLayoutParam":{"module":{"name":"module","type":"String"}},"com\\zoho\\crm\\api\\currencies\\BaseCurrencyActionHandler":{"classes":["com\\zoho\\crm\\api\\currencies\\APIException","com\\zoho\\crm\\api\\currencies\\BaseCurrencyActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\fields\\Crypt":{"mode":{"name":"mode","type":"String"},"column":{"name":"column","type":"String"},"encfldids":{"name":"encFldIds","type":"List"},"notify":{"name":"notify","type":"String"},"table":{"name":"table","type":"String"},"status":{"name":"status","type":"Integer"}},"com\\zoho\\crm\\api\\attachments\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["attachment uploaded successfully"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\attachments\\GetAttachmentsParam":{"perPage":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"String"}},"com\\zoho\\crm\\api\\users\\User":{"country":{"name":"country","type":"String"},"lastName":{"name":"last_name","type":"String","required":true},"role":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\roles\\Role","name":"role","type":"com\\zoho\\crm\\api\\roles\\Role","required":true},"decimalSeparator":{"name":"decimal_separator","type":"String"},"signature":{"name":"signature","type":"String"},"city":{"name":"city","type":"String"},"dateFormat":{"name":"date_format","type":"String"},"language":{"name":"language","type":"String"},"countryLocale":{"name":"country_locale","type":"String"},"locale":{"name":"locale","type":"String"},"microsoft":{"name":"microsoft","type":"Boolean"},"isonline":{"name":"Isonline","type":"Boolean"},"nameFormat":{"name":"name_format","type":"String"},"street":{"name":"street","type":"String"},"alias":{"name":"alias","type":"String"},"currency":{"name":"Currency","type":"String"},"theme":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\Theme","name":"theme","type":"com\\zoho\\crm\\api\\users\\Theme"},"personalAccount":{"name":"personal_account","type":"Boolean"},"state":{"name":"state","type":"String"},"fax":{"name":"fax","type":"String"},"email":{"name":"email","type":"String","required":true},"reportingTo":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Reporting_To","type":"com\\zoho\\crm\\api\\users\\User"},"zip":{"name":"zip","type":"String"},"website":{"name":"website","type":"String"},"offset":{"name":"offset","type":"Long"},"profile":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\profiles\\Profile","name":"profile","type":"com\\zoho\\crm\\api\\profiles\\Profile","required":true},"mobile":{"name":"mobile","type":"String"},"timeZone":{"name":"time_zone","type":"String"},"fullName":{"name":"full_name","type":"String"},"customizeInfo":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\CustomizeInfo","name":"customize_info","type":"com\\zoho\\crm\\api\\users\\CustomizeInfo"},"zuid":{"name":"zuid","type":"String"},"confirm":{"name":"confirm","type":"Boolean"},"firstName":{"name":"first_name","type":"String"},"territories":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\Territory","name":"territories","type":"List"},"phone":{"name":"phone","type":"String"},"dob":{"name":"dob","type":"String"},"timeFormat":{"name":"time_format","type":"String"},"name":{"name":"name","type":"String"},"defaultTabGroup":{"name":"default_tab_group","type":"String"},"status":{"name":"status","type":"String"}},"com\\zoho\\crm\\api\\tags\\ActionWrapper":{"tags":{"structure_name":"com\\zoho\\crm\\api\\tags\\ActionResponse","name":"tags","type":"List"}},"com\\zoho\\crm\\api\\record\\MassUpdateResponseHandler":{"classes":["com\\zoho\\crm\\api\\record\\APIException","com\\zoho\\crm\\api\\record\\MassUpdateResponseWrapper"],"interface":true},"com\\zoho\\crm\\api\\notification\\Info":{"perPage":{"name":"per_page","type":"Integer"},"moreRecords":{"name":"more_records","type":"Boolean"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"}},"com\\zoho\\crm\\api\\record\\MassUpdateActionHandler":{"classes":["com\\zoho\\crm\\api\\record\\APIException","com\\zoho\\crm\\api\\record\\MassUpdateActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\record\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\record\\APIException","com\\zoho\\crm\\api\\record\\ActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\sharerecords\\SharedThrough":{"entityName":{"name":"entity_name","type":"String"},"module":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\modules\\Module","name":"module","type":"com\\zoho\\crm\\api\\modules\\Module"},"id":{"name":"id","type":"Long"}},"com\\zoho\\crm\\api\\modules\\ResponseWrapper":{"modules":{"structure_name":"com\\zoho\\crm\\api\\modules\\Module","name":"modules","type":"List"}},"com\\zoho\\crm\\api\\profiles\\Section":{"name":{"name":"name","type":"String"},"categories":{"structure_name":"com\\zoho\\crm\\api\\profiles\\Category","name":"categories","type":"List"}},"com\\zoho\\crm\\api\\bulkread\\JobDetail":{"result":{"structure_name":"com\\zoho\\crm\\api\\bulkread\\Result","name":"result","type":"com\\zoho\\crm\\api\\bulkread\\Result"},"createdBy":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_by","type":"com\\zoho\\crm\\api\\users\\User"},"query":{"structure_name":"com\\zoho\\crm\\api\\bulkread\\Query","name":"query","type":"com\\zoho\\crm\\api\\bulkread\\Query"},"createdTime":{"name":"created_time","type":"DateTime"},"id":{"name":"id","type":"Long","primary":true},"state":{"values":["COMPLETED","IN PROGRESS","ADDED","FAILURE"],"name":"state","type":"com\\zoho\\crm\\api\\util\\Choice"},"operation":{"name":"operation","type":"String"},"fileType":{"name":"file_type","type":"String"}},"com\\zoho\\crm\\api\\modules\\APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INTERNAL_ERROR","INVALID_MODULE","INVALID_DATA","LIMIT_EXCEEDED","DUPLICATE_DATA","NOT_ALLOWED","NO_PERMISSION"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"api_name","type":"String"},{"name":"json_path","type":"String"},{"name":"limit","type":"Integer"},{"name":"maximum_length","type":"Integer"},{"name":"permissions","type":"List"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","the given module is not supported in api","invalid data","Api name duplicate","Api name is not valid","System keyword not allowed in api name","Api name update not allowed","No permission to update API name","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\record\\GetDeletedRecordsHeader":{"IfModifiedSince":{"name":"If-Modified-Since","type":"DateTime"}},"com\\zoho\\crm\\api\\sharerecords\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\sharerecords\\APIException","com\\zoho\\crm\\api\\sharerecords\\ResponseWrapper"],"interface":true},"com\\zoho\\crm\\api\\record\\MassUpdateResponse":{"classes":["com\\zoho\\crm\\api\\record\\APIException","com\\zoho\\crm\\api\\record\\MassUpdate"],"interface":true},"com\\zoho\\crm\\api\\users\\ActionWrapper":{"users":{"structure_name":"com\\zoho\\crm\\api\\users\\ActionResponse","name":"users","type":"List"}},"com\\zoho\\crm\\api\\attachments\\ResponseWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\attachments\\Attachment","name":"data","type":"List"},"info":{"structure_name":"com\\zoho\\crm\\api\\record\\Info","name":"info","type":"com\\zoho\\crm\\api\\record\\Info"}},"com\\zoho\\crm\\api\\record\\GetRecordParam":{"cvid":{"name":"cvid","type":"String"},"uid":{"name":"uid","type":"String"},"approved":{"name":"approved","type":"String"},"startDateTime":{"name":"startDateTime","type":"DateTime"},"converted":{"name":"converted","type":"String"},"territoryId":{"name":"territory_id","type":"String"},"fields":{"name":"fields","type":"String"},"endDateTime":{"name":"endDateTime","type":"DateTime"},"includeChild":{"name":"include_child","type":"String"}},"com\\zoho\\crm\\api\\bulkread\\Query":{"cvid":{"name":"cvid","type":"String"},"criteria":{"structure_name":"com\\zoho\\crm\\api\\bulkread\\Criteria","name":"criteria","type":"com\\zoho\\crm\\api\\bulkread\\Criteria"},"module":{"name":"module","type":"String","required":true},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"List"}},"com\\zoho\\crm\\api\\record\\FileHandler":{"classes":["com\\zoho\\crm\\api\\record\\SuccessResponse","com\\zoho\\crm\\api\\record\\APIException"],"interface":true},"com\\zoho\\crm\\api\\bulkread\\Criteria":{"groupOperator":{"values":["and","or"],"name":"group_operator","type":"com\\zoho\\crm\\api\\util\\Choice"},"comparator":{"values":["equal","not_equal","in","not_in","less_than","less_equal","greater_than","greater_equal","contains","not_contains","starts_with","ends_with","between","not_between"],"name":"comparator","type":"com\\zoho\\crm\\api\\util\\Choice"},"apiName":{"name":"api_name","type":"String"},"value":{"name":"value","type":"Object"},"group":{"structure_name":"com\\zoho\\crm\\api\\bulkread\\Criteria","name":"group","type":"List"}},"com\\zoho\\crm\\api\\modules\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\modules\\APIException","com\\zoho\\crm\\api\\modules\\SuccessResponse"],"interface":true},"com\\zoho\\crm\\api\\users\\GetUsersParam":{"perPage":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"type":{"name":"type","type":"String","required":true}},"com\\zoho\\crm\\api\\tags\\RecordActionResponse":{"classes":["com\\zoho\\crm\\api\\tags\\SuccessResponse","com\\zoho\\crm\\api\\tags\\APIException"],"interface":true},"com\\zoho\\crm\\api\\tags\\AddTagsToRecordParam":{"tagNames":{"name":"tag_names","type":"String","required":true},"overWrite":{"name":"over_write","type":"String"}},"com\\zoho\\crm\\api\\record\\MassUpdateSuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"job_id","type":"String"},{"name":"id","type":"Long"},{"name":"Modified_Time","type":"DateTime"},{"name":"Created_Time","type":"DateTime"},{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Modified_By","type":"com\\zoho\\crm\\api\\users\\User"},{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Created_By","type":"com\\zoho\\crm\\api\\users\\User"}],"name":"details","type":"Map"},"message":{"values":["record updated","mass update scheduled successfully"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\relatedrecords\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["relation added","relation removed"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\users\\Info":{"perPage":{"name":"per_page","type":"Integer"},"moreRecords":{"name":"more_records","type":"Boolean"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"}},"com\\zoho\\crm\\api\\currencies\\Currency":{"symbol":{"name":"symbol","type":"String","required":true},"modifiedTime":{"name":"modified_time","type":"DateTime"},"format":{"structure_name":"com\\zoho\\crm\\api\\currencies\\Format","name":"format","type":"com\\zoho\\crm\\api\\currencies\\Format","required":true},"isActive":{"name":"is_active","type":"Boolean"},"exchangeRate":{"name":"exchange_rate","type":"String","required":true},"createdBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_by","type":"com\\zoho\\crm\\api\\users\\User"},"isoCode":{"name":"iso_code","type":"String","required":true},"name":{"name":"name","type":"String","required":true},"createdTime":{"name":"created_time","type":"DateTime"},"prefixSymbol":{"name":"prefix_symbol","type":"Boolean"},"modifiedBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"modified_by","type":"com\\zoho\\crm\\api\\users\\User"},"isBase":{"name":"is_base","type":"Boolean"},"id":{"name":"id","type":"Long","primary":true}},"com\\zoho\\crm\\api\\variables\\GetVariableByIDParam":{"group":{"name":"group","type":"String","required":true}},"com\\zoho\\crm\\api\\notes\\BodyWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\notes\\Note","name":"data","max-length":100,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\file\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\file\\APIException","com\\zoho\\crm\\api\\file\\FileBodyWrapper"],"interface":true},"com\\zoho\\crm\\api\\tags\\ResponseWrapper":{"tags":{"structure_name":"com\\zoho\\crm\\api\\tags\\Tag","name":"tags","type":"List"},"info":{"structure_name":"com\\zoho\\crm\\api\\tags\\Info","name":"info","type":"com\\zoho\\crm\\api\\tags\\Info"}},"com\\zoho\\crm\\api\\tags\\UpdateTagsParam":{"module":{"name":"module","type":"String","required":true}},"com\\zoho\\crm\\api\\contactroles\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\contactroles\\APIException","com\\zoho\\crm\\api\\contactroles\\ActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\fields\\LookupField":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com\\zoho\\crm\\api\\record\\GetMassUpdateStatusParam":{"jobId":{"name":"job_id","type":"String"}},"com\\zoho\\crm\\api\\relatedrecords\\APIException":{"code":{"values":["NO_PERMISSION","CANNOT_BE_UPDATED","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","INTERNAL_ERROR"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"id","type":"Long"},{"name":"param_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid data","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","record not deleted","the related id given seems to be invalid","Internal server error occurred.","The relation name given seems to be invalid"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\bulkread\\ActionWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\bulkread\\ActionResponse","name":"data","type":"List"},"info":{"name":"info","type":"Map"}},"com\\zoho\\crm\\api\\tags\\UpdateTagParam":{"module":{"name":"module","type":"String","required":true}},"com\\zoho\\crm\\api\\record\\GetRecordHeader":{"IfModifiedSince":{"name":"If-Modified-Since","type":"DateTime"},"XEXTERNAL":{"name":"X-EXTERNAL","type":"String"}},"com\\zoho\\crm\\api\\currencies\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["The multi-currency feature is enabled and given currency is created as the base currency.","The currency created successfully.","The currency updated successfully"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\variablegroups\\ResponseWrapper":{"variableGroups":{"structure_name":"com\\zoho\\crm\\api\\variablegroups\\VariableGroup","name":"variable_groups","type":"List"}},"com\\zoho\\crm\\api\\tags\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\tags\\SuccessResponse","com\\zoho\\crm\\api\\tags\\APIException"],"interface":true},"com\\zoho\\crm\\api\\org\\LicenseDetails":{"paidType":{"name":"paid_type","type":"String"},"trialType":{"name":"trial_type","type":"String"},"paidExpiry":{"name":"paid_expiry","type":"DateTime"},"paid":{"name":"paid","type":"Boolean"},"usersLicensePurchased":{"name":"users_license_purchased","type":"Long"},"trialExpiry":{"name":"trial_expiry","type":"String"}},"com\\zoho\\crm\\api\\blueprint\\ProcessInfo":{"apiName":{"name":"api_name","type":"String"},"fieldName":{"name":"field_name","type":"String"},"escalation":{"name":"escalation","type":"String"},"continuous":{"name":"continuous","type":"Boolean"},"fieldLabel":{"name":"field_label","type":"String"},"name":{"name":"name","type":"String"},"isContinuous":{"name":"is_continuous","type":"Boolean"},"id":{"name":"id","type":"Long"},"fieldValue":{"name":"field_value","type":"String"},"fieldId":{"name":"field_id","type":"String"},"columnName":{"name":"column_name","type":"String"}},"com\\zoho\\crm\\api\\bulkread\\Result":{"perPage":{"name":"per_page","type":"Integer"},"moreRecords":{"name":"more_records","type":"Boolean"},"count":{"name":"count","type":"Integer"},"downloadUrl":{"name":"download_url","type":"String"},"page":{"name":"page","type":"Integer"}},"com\\zoho\\crm\\api\\users\\GetUsersHeader":{"IfModifiedSince":{"name":"If-Modified-Since","type":"DateTime"}},"com\\zoho\\crm\\api\\customviews\\ResponseWrapper":{"customViews":{"structure_name":"com\\zoho\\crm\\api\\customviews\\CustomView","name":"custom_views","type":"List"},"info":{"structure_name":"com\\zoho\\crm\\api\\customviews\\Info","name":"info","type":"com\\zoho\\crm\\api\\customviews\\Info"}},"com\\zoho\\crm\\api\\profiles\\ResponseWrapper":{"profiles":{"structure_name":"com\\zoho\\crm\\api\\profiles\\Profile","name":"profiles","type":"List"}},"com\\zoho\\crm\\api\\modules\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"api_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["module updated successfully"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\taxes\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\taxes\\ActionWrapper","com\\zoho\\crm\\api\\taxes\\APIException"],"interface":true},"com\\zoho\\crm\\api\\fields\\Currency":{"roundingOption":{"name":"rounding_option","type":"String"},"precision":{"name":"precision","type":"Integer"}},"com\\zoho\\crm\\api\\modules\\Territory":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"},"subordinates":{"name":"subordinates","type":"Boolean"}},"com\\zoho\\crm\\api\\tags\\RecordActionHandler":{"classes":["com\\zoho\\crm\\api\\tags\\APIException","com\\zoho\\crm\\api\\tags\\RecordActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\record\\SearchRecordsHeader":{"XEXTERNAL":{"name":"X-EXTERNAL","type":"String"}},"com\\zoho\\crm\\api\\notes\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\notes\\ActionWrapper","com\\zoho\\crm\\api\\notes\\APIException"],"interface":true},"com\\zoho\\crm\\api\\users\\CustomizeInfo":{"bcView":{"name":"bc_view","type":"String"},"showDetailView":{"name":"show_detail_view","type":"Boolean"},"showHome":{"name":"show_home","type":"Boolean"},"showRightPanel":{"name":"show_right_panel","type":"String"},"notesDesc":{"name":"notes_desc","type":"Boolean"},"unpinRecentItem":{"name":"unpin_recent_item","type":"String"}},"com\\zoho\\crm\\api\\util\\Model":{"classes":["com\\zoho\\crm\\api\\attachments\\SuccessResponse","com\\zoho\\crm\\api\\attachments\\APIException","com\\zoho\\crm\\api\\attachments\\Attachment","com\\zoho\\crm\\api\\attachments\\ActionWrapper","com\\zoho\\crm\\api\\attachments\\ResponseWrapper","com\\zoho\\crm\\api\\attachments\\FileBodyWrapper","com\\zoho\\crm\\api\\notes\\ActionWrapper","com\\zoho\\crm\\api\\notes\\SuccessResponse","com\\zoho\\crm\\api\\notes\\BodyWrapper","com\\zoho\\crm\\api\\notes\\APIException","com\\zoho\\crm\\api\\notes\\Info","com\\zoho\\crm\\api\\notes\\ResponseWrapper","com\\zoho\\crm\\api\\notes\\Note","com\\zoho\\crm\\api\\roles\\Role","com\\zoho\\crm\\api\\roles\\APIException","com\\zoho\\crm\\api\\roles\\ResponseWrapper","com\\zoho\\crm\\api\\relatedlists\\ResponseWrapper","com\\zoho\\crm\\api\\relatedlists\\RelatedList","com\\zoho\\crm\\api\\relatedlists\\APIException","com\\zoho\\crm\\api\\taxes\\Preference","com\\zoho\\crm\\api\\taxes\\ActionWrapper","com\\zoho\\crm\\api\\taxes\\SuccessResponse","com\\zoho\\crm\\api\\taxes\\APIException","com\\zoho\\crm\\api\\taxes\\ResponseWrapper","com\\zoho\\crm\\api\\taxes\\BodyWrapper","com\\zoho\\crm\\api\\taxes\\Tax","com\\zoho\\crm\\api\\layouts\\ResponseWrapper","com\\zoho\\crm\\api\\layouts\\Section","com\\zoho\\crm\\api\\layouts\\APIException","com\\zoho\\crm\\api\\layouts\\Layout","com\\zoho\\crm\\api\\layouts\\Properties","com\\zoho\\crm\\api\\bulkwrite\\CallBack","com\\zoho\\crm\\api\\bulkwrite\\SuccessResponse","com\\zoho\\crm\\api\\bulkwrite\\RequestWrapper","com\\zoho\\crm\\api\\bulkwrite\\APIException","com\\zoho\\crm\\api\\bulkwrite\\BulkWriteResponse","com\\zoho\\crm\\api\\bulkwrite\\File","com\\zoho\\crm\\api\\bulkwrite\\Resource","com\\zoho\\crm\\api\\bulkwrite\\FieldMapping","com\\zoho\\crm\\api\\bulkwrite\\FileBodyWrapper","com\\zoho\\crm\\api\\bulkwrite\\Result","com\\zoho\\crm\\api\\customviews\\SharedDetails","com\\zoho\\crm\\api\\customviews\\Translation","com\\zoho\\crm\\api\\customviews\\ResponseWrapper","com\\zoho\\crm\\api\\customviews\\Info","com\\zoho\\crm\\api\\customviews\\CustomView","com\\zoho\\crm\\api\\customviews\\Criteria","com\\zoho\\crm\\api\\customviews\\Range","com\\zoho\\crm\\api\\customviews\\APIException","com\\zoho\\crm\\api\\notification\\SuccessResponse","com\\zoho\\crm\\api\\notification\\Info","com\\zoho\\crm\\api\\notification\\BodyWrapper","com\\zoho\\crm\\api\\notification\\APIException","com\\zoho\\crm\\api\\notification\\ActionWrapper","com\\zoho\\crm\\api\\notification\\ResponseWrapper","com\\zoho\\crm\\api\\notification\\Notification","com\\zoho\\crm\\api\\blueprint\\Transition","com\\zoho\\crm\\api\\blueprint\\BluePrint","com\\zoho\\crm\\api\\blueprint\\SuccessResponse","com\\zoho\\crm\\api\\blueprint\\BodyWrapper","com\\zoho\\crm\\api\\blueprint\\NextTransition","com\\zoho\\crm\\api\\blueprint\\ProcessInfo","com\\zoho\\crm\\api\\blueprint\\ResponseWrapper","com\\zoho\\crm\\api\\blueprint\\APIException","com\\zoho\\crm\\api\\blueprint\\ValidationError","com\\zoho\\crm\\api\\file\\BodyWrapper","com\\zoho\\crm\\api\\file\\SuccessResponse","com\\zoho\\crm\\api\\file\\ActionWrapper","com\\zoho\\crm\\api\\file\\APIException","com\\zoho\\crm\\api\\file\\FileBodyWrapper","com\\zoho\\crm\\api\\record\\ResponseWrapper","com\\zoho\\crm\\api\\record\\Consent","com\\zoho\\crm\\api\\record\\SuccessResponse","com\\zoho\\crm\\api\\record\\ConvertActionWrapper","com\\zoho\\crm\\api\\record\\MassUpdateBodyWrapper","com\\zoho\\crm\\api\\record\\APIException","com\\zoho\\crm\\api\\record\\Territory","com\\zoho\\crm\\api\\record\\SuccessfulConvert","com\\zoho\\crm\\api\\record\\LeadConverter","com\\zoho\\crm\\api\\record\\BodyWrapper","com\\zoho\\crm\\api\\record\\Criteria","com\\zoho\\crm\\api\\record\\MassUpdateActionWrapper","com\\zoho\\crm\\api\\record\\Info","com\\zoho\\crm\\api\\record\\FileBodyWrapper","com\\zoho\\crm\\api\\record\\InventoryLineItems","com\\zoho\\crm\\api\\record\\MassUpdate","com\\zoho\\crm\\api\\record\\ActionWrapper","com\\zoho\\crm\\api\\record\\Record","com\\zoho\\crm\\api\\record\\RemindAt","com\\zoho\\crm\\api\\record\\Participants","com\\zoho\\crm\\api\\record\\ConvertBodyWrapper","com\\zoho\\crm\\api\\record\\MassUpdateResponseWrapper","com\\zoho\\crm\\api\\record\\FileDetails","com\\zoho\\crm\\api\\record\\Reminder","com\\zoho\\crm\\api\\record\\DeletedRecordsWrapper","com\\zoho\\crm\\api\\record\\DeletedRecord","com\\zoho\\crm\\api\\record\\LineTax","com\\zoho\\crm\\api\\record\\RecurringActivity","com\\zoho\\crm\\api\\record\\LineItemProduct","com\\zoho\\crm\\api\\record\\Comment","com\\zoho\\crm\\api\\record\\CarryOverTags","com\\zoho\\crm\\api\\record\\MassUpdateSuccessResponse","com\\zoho\\crm\\api\\record\\PricingDetails","com\\zoho\\crm\\api\\relatedrecords\\APIException","com\\zoho\\crm\\api\\relatedrecords\\SuccessResponse","com\\zoho\\crm\\api\\relatedrecords\\ActionWrapper","com\\zoho\\crm\\api\\relatedrecords\\ResponseWrapper","com\\zoho\\crm\\api\\relatedrecords\\FileBodyWrapper","com\\zoho\\crm\\api\\relatedrecords\\BodyWrapper","com\\zoho\\crm\\api\\sharerecords\\SuccessResponse","com\\zoho\\crm\\api\\sharerecords\\SharedThrough","com\\zoho\\crm\\api\\sharerecords\\APIException","com\\zoho\\crm\\api\\sharerecords\\ResponseWrapper","com\\zoho\\crm\\api\\sharerecords\\ShareRecord","com\\zoho\\crm\\api\\sharerecords\\DeleteActionWrapper","com\\zoho\\crm\\api\\sharerecords\\BodyWrapper","com\\zoho\\crm\\api\\sharerecords\\ActionWrapper","com\\zoho\\crm\\api\\bulkread\\Criteria","com\\zoho\\crm\\api\\bulkread\\Query","com\\zoho\\crm\\api\\bulkread\\RequestWrapper","com\\zoho\\crm\\api\\bulkread\\SuccessResponse","com\\zoho\\crm\\api\\bulkread\\JobDetail","com\\zoho\\crm\\api\\bulkread\\Result","com\\zoho\\crm\\api\\bulkread\\CallBack","com\\zoho\\crm\\api\\bulkread\\ResponseWrapper","com\\zoho\\crm\\api\\bulkread\\APIException","com\\zoho\\crm\\api\\bulkread\\ActionWrapper","com\\zoho\\crm\\api\\bulkread\\FileBodyWrapper","com\\zoho\\crm\\api\\variables\\ResponseWrapper","com\\zoho\\crm\\api\\variables\\BodyWrapper","com\\zoho\\crm\\api\\variables\\APIException","com\\zoho\\crm\\api\\variables\\Variable","com\\zoho\\crm\\api\\variables\\SuccessResponse","com\\zoho\\crm\\api\\variables\\ActionWrapper","com\\zoho\\crm\\api\\org\\SuccessResponse","com\\zoho\\crm\\api\\org\\ResponseWrapper","com\\zoho\\crm\\api\\org\\Org","com\\zoho\\crm\\api\\org\\LicenseDetails","com\\zoho\\crm\\api\\org\\APIException","com\\zoho\\crm\\api\\org\\FileBodyWrapper","com\\zoho\\crm\\api\\query\\ResponseWrapper","com\\zoho\\crm\\api\\query\\BodyWrapper","com\\zoho\\crm\\api\\query\\APIException","com\\zoho\\crm\\api\\profiles\\APIException","com\\zoho\\crm\\api\\profiles\\Category","com\\zoho\\crm\\api\\profiles\\Profile","com\\zoho\\crm\\api\\profiles\\PermissionDetail","com\\zoho\\crm\\api\\profiles\\Section","com\\zoho\\crm\\api\\profiles\\ResponseWrapper","com\\zoho\\crm\\api\\users\\ActionWrapper","com\\zoho\\crm\\api\\users\\SuccessResponse","com\\zoho\\crm\\api\\users\\ResponseWrapper","com\\zoho\\crm\\api\\users\\Territory","com\\zoho\\crm\\api\\users\\CustomizeInfo","com\\zoho\\crm\\api\\users\\Theme","com\\zoho\\crm\\api\\users\\BodyWrapper","com\\zoho\\crm\\api\\users\\Info","com\\zoho\\crm\\api\\users\\Shift","com\\zoho\\crm\\api\\users\\RequestWrapper","com\\zoho\\crm\\api\\users\\User","com\\zoho\\crm\\api\\users\\APIException","com\\zoho\\crm\\api\\users\\TabTheme","com\\zoho\\crm\\api\\modules\\Module","com\\zoho\\crm\\api\\modules\\Territory","com\\zoho\\crm\\api\\modules\\APIException","com\\zoho\\crm\\api\\modules\\SuccessResponse","com\\zoho\\crm\\api\\modules\\ActionWrapper","com\\zoho\\crm\\api\\modules\\ResponseWrapper","com\\zoho\\crm\\api\\modules\\Argument","com\\zoho\\crm\\api\\modules\\RelatedListProperties","com\\zoho\\crm\\api\\modules\\BodyWrapper","com\\zoho\\crm\\api\\tags\\MergeWrapper","com\\zoho\\crm\\api\\tags\\ActionWrapper","com\\zoho\\crm\\api\\tags\\BodyWrapper","com\\zoho\\crm\\api\\tags\\ResponseWrapper","com\\zoho\\crm\\api\\tags\\Tag","com\\zoho\\crm\\api\\tags\\Info","com\\zoho\\crm\\api\\tags\\SuccessResponse","com\\zoho\\crm\\api\\tags\\APIException","com\\zoho\\crm\\api\\tags\\RecordActionWrapper","com\\zoho\\crm\\api\\tags\\CountWrapper","com\\zoho\\crm\\api\\tags\\ConflictWrapper","com\\zoho\\crm\\api\\territories\\Territory","com\\zoho\\crm\\api\\territories\\APIException","com\\zoho\\crm\\api\\territories\\ResponseWrapper","com\\zoho\\crm\\api\\contactroles\\ResponseWrapper","com\\zoho\\crm\\api\\contactroles\\SuccessResponse","com\\zoho\\crm\\api\\contactroles\\BodyWrapper","com\\zoho\\crm\\api\\contactroles\\APIException","com\\zoho\\crm\\api\\contactroles\\ActionWrapper","com\\zoho\\crm\\api\\contactroles\\ContactRole","com\\zoho\\crm\\api\\fields\\RelatedDetails","com\\zoho\\crm\\api\\fields\\Field","com\\zoho\\crm\\api\\fields\\Unique","com\\zoho\\crm\\api\\fields\\Crypt","com\\zoho\\crm\\api\\fields\\ViewType","com\\zoho\\crm\\api\\fields\\AutoNumber","com\\zoho\\crm\\api\\fields\\MultiSelectLookup","com\\zoho\\crm\\api\\fields\\PickListValue","com\\zoho\\crm\\api\\fields\\ResponseWrapper","com\\zoho\\crm\\api\\fields\\ToolTip","com\\zoho\\crm\\api\\fields\\Currency","com\\zoho\\crm\\api\\fields\\Formula","com\\zoho\\crm\\api\\fields\\Private1","com\\zoho\\crm\\api\\fields\\LookupField","com\\zoho\\crm\\api\\fields\\APIException","com\\zoho\\crm\\api\\fields\\Module","com\\zoho\\crm\\api\\fields\\AssociationDetails","com\\zoho\\crm\\api\\variablegroups\\ResponseWrapper","com\\zoho\\crm\\api\\variablegroups\\VariableGroup","com\\zoho\\crm\\api\\variablegroups\\APIException","com\\zoho\\crm\\api\\currencies\\Currency","com\\zoho\\crm\\api\\currencies\\ResponseWrapper","com\\zoho\\crm\\api\\currencies\\SuccessResponse","com\\zoho\\crm\\api\\currencies\\BaseCurrencyWrapper","com\\zoho\\crm\\api\\currencies\\ActionWrapper","com\\zoho\\crm\\api\\currencies\\APIException","com\\zoho\\crm\\api\\currencies\\BodyWrapper","com\\zoho\\crm\\api\\currencies\\Format","com\\zoho\\crm\\api\\currencies\\BaseCurrencyActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\record\\Reminder":{"period":{"name":"period","type":"String","required":true},"unit":{"name":"unit","type":"String","required":true}},"com\\zoho\\crm\\api\\roles\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\roles\\APIException","com\\zoho\\crm\\api\\roles\\ResponseWrapper"],"interface":true},"com\\zoho\\crm\\api\\bulkread\\SuccessResponse":{"code":{"values":["ADDED_SUCCESSFULLY"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"operation","type":"String"},{"values":["COMPLETED","IN PROGRESS","ADDED","FAILURE"],"name":"state","type":"com\\zoho\\crm\\api\\util\\Choice"},{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_by","type":"com\\zoho\\crm\\api\\users\\User"},{"name":"created_time","type":"DateTime"}],"name":"details","type":"Map"},"message":{"values":["Added successfully."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\record\\Info":{"perPage":{"name":"per_page","type":"Integer"},"moreRecords":{"name":"more_records","type":"Boolean"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"}},"com\\zoho\\crm\\api\\variables\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\variables\\ResponseWrapper","com\\zoho\\crm\\api\\variables\\APIException"],"interface":true},"com\\zoho\\crm\\api\\fields\\Module":{"layout":{"structure_name":"com\\zoho\\crm\\api\\layouts\\Layout","name":"layout","type":"com\\zoho\\crm\\api\\layouts\\Layout"},"displayLabel":{"name":"display_label","type":"String"},"apiName":{"name":"api_name","type":"String"},"module":{"name":"module","type":"String"},"moduleName":{"name":"module_name","type":"String"},"id":{"name":"id","type":"Long"}},"com\\zoho\\crm\\api\\relatedlists\\APIException":{"code":{"values":["INVALID_MODULE","REQUIRED_PARAM_MISSING","INTERNAL_ERROR"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"param","type":"String"}],"name":"details","type":"Map"},"message":{"values":["the module name given seems to be invalid","the given module is not supported in api","One of the expected parameter is missing","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\users\\APIException":{"code":{"values":["ID_ALREADY_DELETED","CANNOT_UPDATE_DELETED_USER","AUTHORIZATION_FAILED","PATTERN_NOT_MATCHED","INVALID_REQUEST","LICENSE_LIMIT_EXCEEDED","DUPLICATE_DATA","INVALID_DATA","UNAPPROVABLE","MANDATORY_NOT_FOUND","INTERNAL_ERROR","EMAIL_UPDATE_NOT_ALLOWED","ID_ALREADY_DEACTIVATED","ID_ALREADY_ACTIVE","FEATURE_PERMISSION","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"api_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred.","Cannot add user under CRM Plus account. Kindly use CRMPlus URL to add user","Request exceeds your license limit. Need to upgrade in order to add","Failed to add user since same email id is already present","Email Id should not contain @skydesk.jp. Please choose a different email id","Invalid Email Id. Please choose a different email id","Cannot add user for CRMPlus account from CRM. Kindly add user through CRMPlus","Company Name is required","Error occurred in resending the invitation of CRMPLUS user in CRM account","Cannot update the time_zone of another User","Either trial has expired or user does not have sufficient privilege to perform this action","Error occurred while updating CRMPlus User in CRM Account","invalid_data","Deleted user cannot be updated","Re-invite is not allowed for a confirmed user","Cannot update email of a confirmed CRM User","User with same email id is already in CRM Plus","User is already deactivated","Primary Contact cannot be deactivated","User is already active","Share among Subordinates Feature is not available","Profile and Role cannot be Updated by the user.","the_id_given_seems_to_be_invalid","Primary contact cannot be deleted","User is already deleted","User does not have sufficient privilege to delete users"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\fields\\Field":{"private":{"structure_name":"com\\zoho\\crm\\api\\fields\\Private1","name":"private","type":"com\\zoho\\crm\\api\\fields\\Private1"},"apiName":{"name":"api_name","type":"String"},"webhook":{"name":"webhook","type":"Boolean"},"criteria":{"structure_name":"com\\zoho\\crm\\api\\customviews\\Criteria","name":"criteria","type":"com\\zoho\\crm\\api\\customviews\\Criteria"},"crypt":{"structure_name":"com\\zoho\\crm\\api\\fields\\Crypt","name":"crypt","type":"com\\zoho\\crm\\api\\fields\\Crypt"},"defaultValue":{"name":"default_value","type":"String"},"validationRule":{"name":"validation_rule","type":"Map"},"tooltip":{"structure_name":"com\\zoho\\crm\\api\\fields\\ToolTip","name":"tooltip","type":"com\\zoho\\crm\\api\\fields\\ToolTip"},"quickSequenceNumber":{"name":"quick_sequence_number","type":"Integer"},"relatedDetails":{"structure_name":"com\\zoho\\crm\\api\\fields\\RelatedDetails","name":"related_details","type":"com\\zoho\\crm\\api\\fields\\RelatedDetails"},"jsonType":{"name":"json_type","type":"String"},"type":{"name":"_type","type":"String"},"layouts":{"structure_name":"com\\zoho\\crm\\api\\layouts\\Layout","name":"layouts","type":"com\\zoho\\crm\\api\\layouts\\Layout"},"mandatory":{"name":"mandatory","type":"Boolean"},"content":{"name":"content","type":"String"},"blueprintSupported":{"name":"blueprint_supported","type":"Boolean"},"associationDetails":{"structure_name":"com\\zoho\\crm\\api\\fields\\AssociationDetails","name":"association_details","type":"com\\zoho\\crm\\api\\fields\\AssociationDetails"},"pickListValues":{"structure_name":"com\\zoho\\crm\\api\\fields\\PickListValue","name":"pick_list_values","type":"List"},"fieldLabel":{"name":"field_label","type":"String"},"fieldReadOnly":{"name":"field_read_only","type":"Boolean"},"businesscardSupported":{"name":"businesscard_supported","type":"Boolean"},"currency":{"structure_name":"com\\zoho\\crm\\api\\fields\\Currency","name":"currency","type":"com\\zoho\\crm\\api\\fields\\Currency"},"id":{"name":"id","type":"Long","read-only":true,"primary":true},"displayLabel":{"name":"display_label","type":"String"},"personalityName":{"name":"personality_name","type":"String"},"lookup":{"structure_name":"com\\zoho\\crm\\api\\fields\\Module","name":"lookup","type":"com\\zoho\\crm\\api\\fields\\Module"},"visible":{"name":"visible","type":"Boolean"},"dataType":{"name":"data_type","type":"String","read-only":true},"length":{"name":"length","type":"Integer"},"readOnly":{"name":"read_only","type":"Boolean"},"historyTracking":{"name":"history_tracking","type":"Boolean"},"sectionId":{"name":"section_id","type":"Integer"},"systemMandatory":{"name":"system_mandatory","type":"Boolean"},"message":{"name":"message","type":"String"},"subform":{"structure_name":"com\\zoho\\crm\\api\\fields\\Module","name":"subform","type":"com\\zoho\\crm\\api\\fields\\Module"},"autoNumber":{"structure_name":"com\\zoho\\crm\\api\\fields\\AutoNumber","name":"auto_number","type":"com\\zoho\\crm\\api\\fields\\AutoNumber"},"customField":{"name":"custom_field","type":"Boolean"},"decimalPlace":{"name":"decimal_place","type":"Integer"},"convertMapping":{"name":"convert_mapping","type":"Map"},"createdSource":{"name":"created_source","type":"String"},"multiModuleLookup":{"name":"multi_module_lookup","type":"Map"},"massUpdate":{"name":"mass_update","type":"Boolean"},"transitionSequence":{"name":"transition_sequence","type":"Integer"},"unique":{"structure_name":"com\\zoho\\crm\\api\\fields\\Unique","name":"unique","type":"com\\zoho\\crm\\api\\fields\\Unique"},"viewType":{"structure_name":"com\\zoho\\crm\\api\\fields\\ViewType","name":"view_type","type":"com\\zoho\\crm\\api\\fields\\ViewType"},"formula":{"structure_name":"com\\zoho\\crm\\api\\fields\\Formula","name":"formula","type":"com\\zoho\\crm\\api\\fields\\Formula"},"multiselectlookup":{"structure_name":"com\\zoho\\crm\\api\\fields\\MultiSelectLookup","name":"multiselectlookup","type":"com\\zoho\\crm\\api\\fields\\MultiSelectLookup"},"columnName":{"name":"column_name","type":"String"}},"com\\zoho\\crm\\api\\record\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\record\\SuccessResponse","com\\zoho\\crm\\api\\record\\APIException"],"interface":true},"com\\zoho\\crm\\api\\blueprint\\ValidationError":{"apiName":{"name":"api_name","type":"String"},"message":{"name":"message","type":"String"}},"com\\zoho\\crm\\api\\attachments\\ActionWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\attachments\\ActionResponse","name":"data","type":"List"}},"com\\zoho\\crm\\api\\blueprint\\ResponseWrapper":{"blueprint":{"structure_name":"com\\zoho\\crm\\api\\blueprint\\BluePrint","name":"blueprint","type":"com\\zoho\\crm\\api\\blueprint\\BluePrint"}},"com\\zoho\\crm\\api\\attachments\\FileBodyWrapper":{"file":{"name":"file","type":"com\\zoho\\crm\\api\\util\\StreamWrapper","required":true}},"com\\zoho\\crm\\api\\variables\\ResponseWrapper":{"variables":{"structure_name":"com\\zoho\\crm\\api\\variables\\Variable","name":"variables","type":"List"}},"com\\zoho\\crm\\api\\territories\\Territory":{"modifiedTime":{"name":"modified_time","type":"DateTime"},"manager":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"manager","type":"com\\zoho\\crm\\api\\users\\User"},"createdBy":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_by","type":"com\\zoho\\crm\\api\\users\\User"},"criteria":{"structure_name":"com\\zoho\\crm\\api\\customviews\\Criteria","name":"criteria","type":"com\\zoho\\crm\\api\\customviews\\Criteria"},"name":{"name":"name","type":"String"},"createdTime":{"name":"created_time","type":"DateTime"},"description":{"name":"description","type":"String"},"modifiedBy":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"modified_by","type":"com\\zoho\\crm\\api\\users\\User"},"id":{"name":"id","type":"Long","primary":true},"parentId":{"name":"parent_id","type":"String"}},"com\\zoho\\crm\\api\\org\\APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INTERNAL_ERROR","INVALID_DATA"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","the request does not contain any file","invalid file type","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\modules\\BodyWrapper":{"modules":{"structure_name":"com\\zoho\\crm\\api\\modules\\Module","name":"modules","max-length":1,"type":"List","min-length":1}},"com\\zoho\\crm\\api\\tags\\MergeWrapper":{"tags":{"structure_name":"com\\zoho\\crm\\api\\tags\\ConflictWrapper","name":"tags","max-length":1,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\customviews\\Info":{"default":{"name":"default","type":"String"},"perPage":{"name":"per_page","type":"Integer"},"moreRecords":{"name":"more_records","type":"Boolean"},"count":{"name":"count","type":"Integer"},"translation":{"structure_name":"com\\zoho\\crm\\api\\customviews\\Translation","name":"translation","type":"com\\zoho\\crm\\api\\customviews\\Translation"},"page":{"name":"page","type":"Integer"}},"com\\zoho\\crm\\api\\territories\\APIException":{"code":{"values":["OAUTH_SCOPE_MISMATCH","INTERNAL_ERROR","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_DATA","CURRENCIES_NOT_ENABLED","FEATURE_NOT_SUPPORTED"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\notes\\ResponseWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\notes\\Note","name":"data","type":"List"},"info":{"structure_name":"com\\zoho\\crm\\api\\notes\\Info","name":"info","type":"com\\zoho\\crm\\api\\notes\\Info"}},"com\\zoho\\crm\\api\\tags\\CreateTagsParam":{"module":{"name":"module","type":"String","required":true}},"com\\zoho\\crm\\api\\query\\ResponseWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\record\\Record","name":"data","type":"List"},"info":{"structure_name":"com\\zoho\\crm\\api\\record\\Info","name":"info","type":"com\\zoho\\crm\\api\\record\\Info"}},"com\\zoho\\crm\\api\\fields\\Private1":{"restricted":{"name":"restricted","type":"Boolean"},"type":{"name":"type","type":"String"},"export":{"name":"export","type":"Boolean"}},"com\\zoho\\crm\\api\\file\\APIException":{"code":{"values":["VIRUS_DETECTED","failure_in_attachment_handling","INTERNAL_ERROR","INVALID_TOKEN","INVALID_DATA","MANDATORY_NOT_FOUND","NO_PERMISSION","INVALID_MODULE","NOT_SUPPORTED","PATTERN_NOT_MATCHED","OAUTH_SCOPE_MISMATCH","DUPLICATE_DATA","INVALID_QUERY","MAPPING_MISMATCH","ID_ALREADY_CONVERTED","FILE_SIZE_MORE_THAN_ALLOWED_SIZE","RECORD_IN_BLUEPRINT","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","Not Modified","AUTHENTICATION_FAILURE","REQUIRED_PARAM_MISSING"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"id","type":"String"}],"name":"details","type":"Map"},"message":{"values":["Unable to process your request. Virus has been detected.","Problem in uploading attachment. kindly upload the file properly","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","invalid data","permission denied","Internal server error occurred.","duplicate data","required field not found","record not deleted","record not deletable","Authentication failed","One of the expected parameter is missing","mandatory param missing","unable to process your request. please verify whether you have entered proper method name"," parameter and parameter values."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\currencies\\BodyWrapper":{"currencies":{"structure_name":"com\\zoho\\crm\\api\\currencies\\Currency","name":"currencies","max-length":10,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\variables\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\variables\\APIException","com\\zoho\\crm\\api\\variables\\ActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\org\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["photo uploaded successfully"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\attachments\\DeleteAttachmentsParam":{"ids":{"name":"ids","type":"Long","required":true}},"com\\zoho\\crm\\api\\modules\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\modules\\APIException","com\\zoho\\crm\\api\\modules\\ActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\bulkwrite\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\bulkwrite\\SuccessResponse","com\\zoho\\crm\\api\\bulkwrite\\APIException"],"interface":true},"com\\zoho\\crm\\api\\variables\\ActionWrapper":{"variables":{"structure_name":"com\\zoho\\crm\\api\\variables\\ActionResponse","name":"variables","type":"List","required":true}},"com\\zoho\\crm\\api\\record\\InventoryLineItems":{"unitPrice":{"name":"unit_price","type":"Float"},"quantityInStock":{"name":"quantity_in_stock","type":"Float"},"product":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\record\\LineItemProduct","name":"product","type":"com\\zoho\\crm\\api\\record\\LineItemProduct","required":true},"quantity":{"name":"quantity","type":"Float","required":true},"book":{"name":"book","type":"Float"},"discount":{"name":"Discount","type":"String"},"tax":{"name":"Tax","type":"Float"},"totalAfterDiscount":{"name":"total_after_discount","type":"Float"},"total":{"name":"total","type":"Float"},"netTotal":{"name":"net_total","type":"Float"},"lineTax":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\record\\LineTax","name":"line_tax","type":"List"},"listPrice":{"name":"list_price","type":"Float"},"productDescription":{"name":"product_description","type":"String"}},"com\\zoho\\crm\\api\\org\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\org\\SuccessResponse","com\\zoho\\crm\\api\\org\\APIException"],"interface":true},"com\\zoho\\crm\\api\\profiles\\GetProfilesHeader":{"ifModifiedSince":{"name":"If-Modified-Since","type":"DateTime"}},"com\\zoho\\crm\\api\\relatedlists\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\relatedlists\\ResponseWrapper","com\\zoho\\crm\\api\\relatedlists\\APIException"],"interface":true},"com\\zoho\\crm\\api\\tags\\AddTagsToMultipleRecordsParam":{"ids":{"name":"ids","type":"Long","required":true},"tagNames":{"name":"tag_names","type":"String","required":true},"overWrite":{"name":"over_write","type":"String"}},"com\\zoho\\crm\\api\\record\\GetDeletedRecordsParam":{"perPage":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"},"type":{"name":"type","type":"String"}},"com\\zoho\\crm\\api\\variables\\APIException":{"code":{"values":["UNABLE_TO_PARSE_DATA_TYPE","REQUIRED_PARAM_MISSING","DUPLICATE_DATA","INVALID_DATA","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INTERNAL_ERROR","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"param","type":"String"},{"name":"api_name","type":"String"},{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["either the request body or parameters is in wrong format","One of the expected parameter is missing","duplicate data","variable not deleted","invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\notification\\GetNotificationDetailsParam":{"perPage":{"name":"per_page","type":"Integer"},"module":{"name":"module","type":"String"},"page":{"name":"page","type":"Integer"},"channelId":{"name":"channel_id","type":"Long"}},"com\\zoho\\crm\\api\\tags\\RemoveTagsFromMultipleRecordsParam":{"ids":{"name":"ids","type":"Long","required":true},"tagNames":{"name":"tag_names","type":"String","required":true}},"com\\zoho\\crm\\api\\file\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"name","type":"String"},{"name":"id","type":"String"}],"name":"details","type":"Map"},"message":{"values":["uploaded Succeessfully"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\users\\Theme":{"newBackground":{"name":"new_background","type":"String"},"normalTab":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\TabTheme","name":"normal_tab","type":"com\\zoho\\crm\\api\\users\\TabTheme"},"background":{"name":"background","type":"String"},"screen":{"name":"screen","type":"String"},"type":{"name":"type","type":"String"},"selectedTab":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\TabTheme","name":"selected_tab","type":"com\\zoho\\crm\\api\\users\\TabTheme"}},"com\\zoho\\crm\\api\\customviews\\Criteria":{"comparator":{"values":["equal","not_equal","in","not_in","less_than","less_equal","greater_than","greater_equal","contains","not_contains","starts_with","ends_with","between","not_between"],"name":"comparator","type":"com\\zoho\\crm\\api\\util\\Choice"},"groupOperator":{"values":["and","or"],"name":"group_operator","type":"com\\zoho\\crm\\api\\util\\Choice"},"field":{"name":"field","type":"String"},"value":{"name":"value","type":"Object"},"group":{"structure_name":"com\\zoho\\crm\\api\\customviews\\Criteria","name":"group","type":"List"}},"com\\zoho\\crm\\api\\org\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\org\\ResponseWrapper","com\\zoho\\crm\\api\\org\\APIException"],"interface":true},"com\\zoho\\crm\\api\\attachments\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\attachments\\APIException","com\\zoho\\crm\\api\\attachments\\ResponseWrapper","com\\zoho\\crm\\api\\attachments\\FileBodyWrapper"],"interface":true},"com\\zoho\\crm\\api\\bulkwrite\\UploadFileHeader":{"feature":{"values":["bulk-write"],"name":"feature","type":"String"},"XCRMORG":{"name":"X-CRM-ORG","type":"String"}},"com\\zoho\\crm\\api\\bulkwrite\\FieldMapping":{"apiName":{"name":"api_name","type":"String","required":true},"defaultValue":{"name":"default_value","type":"Map"},"module":{"name":"module","type":"String"},"format":{"name":"format","type":"String"},"index":{"name":"index","type":"Integer"},"findBy":{"name":"find_by","type":"String"}},"com\\zoho\\crm\\api\\tags\\RemoveTagsFromRecordParam":{"tagNames":{"name":"tag_names","type":"String","required":true}},"com\\zoho\\crm\\api\\relatedrecords\\ActionWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\relatedrecords\\ActionResponse","name":"data","type":"List"}},"com\\zoho\\crm\\api\\users\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\users\\ActionWrapper","com\\zoho\\crm\\api\\users\\APIException"],"interface":true},"com\\zoho\\crm\\api\\fields\\Unique":{"casesensitive":{"name":"casesensitive","type":"String"}},"com\\zoho\\crm\\api\\territories\\ResponseWrapper":{"territories":{"structure_name":"com\\zoho\\crm\\api\\territories\\Territory","name":"territories","type":"List"}},"com\\zoho\\crm\\api\\sharerecords\\GetSharedRecordDetailsParam":{"view":{"name":"view","type":"String"},"sharedTo":{"name":"sharedTo","type":"Long"}},"com\\zoho\\crm\\api\\record\\FileDetails":{"extn":{"name":"extn","type":"String"},"fileName":{"name":"file_Name","type":"String"},"previewUrl":{"name":"preview_Url","type":"String"},"isPreviewAvailable":{"name":"is_Preview_Available","type":"Boolean"},"downloadUrl":{"name":"download_Url","type":"String"},"creatorId":{"name":"creator_Id","type":"String"},"entityId":{"name":"entity_Id","type":"String"},"delete":{"name":"_delete","type":"String"},"mode":{"name":"mode","type":"String"},"linkDocs":{"name":"link_Docs","type":"Integer"},"fileSize":{"name":"file_Size","type":"String"},"deleteUrl":{"name":"delete_Url","type":"String"},"attachmentId":{"name":"attachment_Id","type":"String"},"originalSizeByte":{"name":"original_Size_Byte","type":"String"},"fileId":{"name":"file_Id","type":"String","required":true}},"com\\zoho\\crm\\api\\blueprint\\NextTransition":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com\\zoho\\crm\\api\\notification\\Notification":{"resourceId":{"name":"resource_id","type":"String"},"deleteevents":{"name":"_delete_events","type":"Boolean"},"notifyOnRelatedAction":{"name":"notify_on_related_action","type":"Boolean"},"notifyUrl":{"name":"notify_url","type":"String","required":true},"resourceName":{"name":"resource_name","type":"String"},"resourceUri":{"name":"resource_uri","type":"String"},"channelExpiry":{"name":"channel_expiry","type":"DateTime"},"fields":{"name":"fields","type":"Map"},"channelId":{"name":"channel_id","type":"Long","required":true,"primary":true},"events":{"required_in_update":true,"name":"events","type":"List","required":true},"token":{"name":"token","max-length":50,"type":"String","min-length":1}},"com\\zoho\\crm\\api\\customviews\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\customviews\\ResponseWrapper","com\\zoho\\crm\\api\\customviews\\APIException"],"interface":true},"com\\zoho\\crm\\api\\bulkwrite\\APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","FILE_TOO_LARGE","INVALID_FILE_FORMAT","MANDATORY_FIELDS_NOT_MAPPED","MANDATORY_NOT_FOUND","INVALID_FIELD","INVALID_FORMAT","INVALID_FILE_ID","HEADER_LIMIT_EXCEEDED","COLUMN_INDEX_NOT_FOUND","MODULE_NOT_AVAILABLE","INVALID_DATA","DUPLICATE_DATA","NOT_APPROVED","BLOCKED_RECORD","CANNOT_PROCESS","LIMIT_EXCEEDED","RESOURCE_NOT_FOUND","MISSING_REQUIRED_KEY","INVALID_FIELD_NAME","FILE_NOT_SUPPORTED","INTERNAL_ERROR"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"xError":{"values":["check if headers [feature:X-CRM-ORG] are present and valid"],"name":"x-error","type":"com\\zoho\\crm\\api\\util\\Choice"},"httpStatus":{"name":"http_status","type":"String"},"errorMessage":{"values":["Bad Request"],"name":"ERROR_MESSAGE","type":"com\\zoho\\crm\\api\\util\\Choice"},"errorCode":{"name":"ERROR_CODE","type":"Integer"},"details":{"name":"details","type":"Map"},"xInfo":{"values":["Link not valid"],"name":"x-info","type":"com\\zoho\\crm\\api\\util\\Choice"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","invalid file format. only zip format is supported","File size too large to process","The requested resource doesn't exist.","required key operation is not found in request body.","improper file id","required key index for field Company is not found in request body.","All mandatory fields are not mapped for the layout","Requested module 'asdf' is not available.","invalid mapping. invalid api_name ast_Name.","File not supported for bulk write","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"},"info":{"values":["Forbidden"],"name":"info","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\customviews\\APIException":{"code":{"values":["NO_PERMISSION","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","REQUIRED_PARAM_MISSING","INVALID_MODULE","INTERNAL_ERROR","INVALID_DATA"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"expected_data_type","type":"String"},{"name":"api_name","type":"String"},{"structure_name":"com\\zoho\\crm\\api\\customviews\\Range","name":"range","type":"com\\zoho\\crm\\api\\customviews\\Range"},{"name":"json_path","type":"String"},{"name":"resource_path_index","type":"Integer"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","The given module is not supported in API","invalid data","Invalid ID","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\contactroles\\BodyWrapper":{"contactRoles":{"structure_name":"com\\zoho\\crm\\api\\contactroles\\ContactRole","name":"contact_roles","max-length":100,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\notes\\Info":{"perPage":{"name":"per_page","type":"Integer"},"moreRecords":{"name":"more_records","type":"Boolean"},"count":{"name":"count","type":"Integer"},"page":{"name":"page","type":"Integer"}},"com\\zoho\\crm\\api\\relatedlists\\RelatedList":{"displayLabel":{"name":"display_label","type":"String"},"sequenceNumber":{"name":"sequence_number","type":"String"},"apiName":{"name":"api_name","type":"String"},"module":{"name":"module","type":"String"},"name":{"name":"name","type":"String"},"action":{"name":"action","type":"String"},"id":{"name":"id","type":"Long","primary":true},"href":{"name":"href","type":"String"},"type":{"name":"type","type":"String"},"connectedmodule":{"name":"connectedmodule","type":"String"},"linkingmodule":{"name":"linkingmodule","type":"String"}},"com\\zoho\\crm\\api\\record\\UpdateRecordsHeader":{"XEXTERNAL":{"name":"X-EXTERNAL","type":"String"}},"com\\zoho\\crm\\api\\contactroles\\DeleteContactRolesParam":{"ids":{"name":"ids","type":"Long","required":true}},"com\\zoho\\crm\\api\\tags\\GetTagsParam":{"myTags":{"values":["true","false"],"name":"my_tags","type":"String"},"module":{"name":"module","type":"String","required":true}},"com\\zoho\\crm\\api\\profiles\\Profile":{"displayLabel":{"name":"display_label","type":"String"},"modifiedTime":{"name":"modified_time","type":"DateTime"},"permissionsDetails":{"structure_name":"com\\zoho\\crm\\api\\profiles\\PermissionDetail","name":"permissions_details","type":"List"},"description":{"name":"description","type":"String"},"delete":{"name":"_delete","type":"Boolean"},"sections":{"structure_name":"com\\zoho\\crm\\api\\profiles\\Section","name":"sections","type":"List"},"default":{"name":"default","type":"Boolean"},"createdBy":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"created_by","type":"com\\zoho\\crm\\api\\users\\User"},"name":{"name":"name","type":"String"},"createdTime":{"name":"created_time","type":"DateTime"},"modifiedBy":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"modified_by","type":"com\\zoho\\crm\\api\\users\\User"},"id":{"name":"id","type":"Long","primary":true},"category":{"name":"category","type":"Boolean"}},"com\\zoho\\crm\\api\\variablegroups\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\variablegroups\\ResponseWrapper","com\\zoho\\crm\\api\\variablegroups\\APIException"],"interface":true},"com\\zoho\\crm\\api\\bulkread\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\bulkread\\APIException","com\\zoho\\crm\\api\\bulkread\\ActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\bulkread\\FileBodyWrapper":{"file":{"name":"file","type":"com\\zoho\\crm\\api\\util\\StreamWrapper","required":true}},"com\\zoho\\crm\\api\\variables\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["variable added","variable updated","variable deleted"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\notification\\DisableNotificationsParam":{"channelIds":{"name":"channel_ids","type":"Long"}},"com\\zoho\\crm\\api\\layouts\\Properties":{"maximumRows":{"name":"maximum_rows","type":"Integer"},"tooltip":{"structure_name":"com\\zoho\\crm\\api\\fields\\ToolTip","name":"tooltip","type":"com\\zoho\\crm\\api\\fields\\ToolTip"},"reorderRows":{"name":"reorder_rows","type":"Boolean"}},"com\\zoho\\crm\\api\\layouts\\APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_MODULE","REQUIRED_PARAM_MISSING","INTERNAL_ERROR","NO_PERMISSION","INVALID_DATA"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","User does not have permission to access this layout.","Layout does not belongs to the given module","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\record\\ConvertBodyWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\record\\LeadConverter","name":"data","max-length":1,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\record\\Comment":{"commentedTime":{"name":"commented_time","type":"DateTime"},"commentContent":{"name":"comment_content","type":"String"},"id":{"name":"id","type":"Long"},"commentedBy":{"name":"commented_by","type":"String"}},"com\\zoho\\crm\\api\\variables\\BodyWrapper":{"variables":{"structure_name":"com\\zoho\\crm\\api\\variables\\Variable","name":"variables","max-length":100,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\record\\UpdateRecordHeader":{"XEXTERNAL":{"name":"X-EXTERNAL","type":"String"}},"com\\zoho\\crm\\api\\record\\SearchRecordsParam":{"approved":{"name":"approved","type":"String"},"perPage":{"name":"per_page","type":"Integer"},"phone":{"name":"phone","type":"String"},"converted":{"name":"converted","type":"String"},"criteria":{"name":"criteria","type":"String"},"page":{"name":"page","type":"Integer"},"word":{"name":"word","type":"String"},"email":{"name":"email","type":"String"}},"com\\zoho\\crm\\api\\record\\DeleteRecordParam":{"wfTrigger":{"name":"wf_trigger","type":"String"}},"com\\zoho\\crm\\api\\bulkwrite\\File":{"updatedCount":{"name":"updated_count","type":"Integer"},"name":{"name":"name","type":"String"},"skippedCount":{"name":"skipped_count","type":"Integer"},"addedCount":{"name":"added_count","type":"Integer"},"totalCount":{"name":"total_count","type":"Integer"},"status":{"values":["ADDED","IN PROGRESS","COMPLETED","SKIPPED","FAILED"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\record\\MassUpdateBodyWrapper":{"cvid":{"name":"cvid","type":"String"},"data":{"structure_name":"com\\zoho\\crm\\api\\record\\Record","name":"data","type":"List","skip_mandatory":true,"required":true},"criteria":{"structure_name":"com\\zoho\\crm\\api\\record\\Criteria","name":"criteria","type":"List"},"ids":{"name":"ids","type":"List"},"territory":{"structure_name":"com\\zoho\\crm\\api\\record\\Territory","name":"territory","type":"com\\zoho\\crm\\api\\record\\Territory"},"overWrite":{"name":"over_write","type":"Boolean"}},"com\\zoho\\crm\\api\\relatedrecords\\GetRelatedRecordsParam":{"perPage":{"name":"per_page","type":"Integer"},"page":{"name":"page","type":"Integer"}},"com\\zoho\\crm\\api\\users\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"id","type":"Long"},{"name":"email","type":"String"}],"name":"details","type":"Map"},"message":{"values":["User added","User updated","User deleted"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\tags\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\tags\\ResponseWrapper","com\\zoho\\crm\\api\\tags\\APIException"],"interface":true},"com\\zoho\\crm\\api\\layouts\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\layouts\\ResponseWrapper","com\\zoho\\crm\\api\\layouts\\APIException"],"interface":true},"com\\zoho\\crm\\api\\modules\\Module":{"relatedListProperties":{"structure_name":"com\\zoho\\crm\\api\\modules\\RelatedListProperties","name":"related_list_properties","type":"com\\zoho\\crm\\api\\modules\\RelatedListProperties"},"modifiedTime":{"name":"modified_time","type":"DateTime"},"apiName":{"name":"api_name","type":"String","primary":true},"generatedType":{"values":["default","web","custom","linking"],"name":"generated_type","type":"com\\zoho\\crm\\api\\util\\Choice"},"webLink":{"name":"web_link","type":"String"},"deletable":{"name":"deletable","type":"Boolean"},"moduleName":{"name":"module_name","type":"String"},"description":{"name":"description","type":"String"},"scoringSupported":{"name":"scoring_supported","type":"Boolean"},"filterSupported":{"name":"filter_supported","type":"Boolean"},"feedsRequired":{"name":"feeds_required","type":"Boolean"},"creatable":{"name":"creatable","type":"Boolean"},"customView":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\customviews\\CustomView","name":"custom_view","type":"com\\zoho\\crm\\api\\customviews\\CustomView"},"webformSupported":{"name":"webform_supported","type":"Boolean"},"kanbanViewSupported":{"name":"kanban_view_supported","type":"Boolean"},"modifiedBy":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"modified_by","type":"com\\zoho\\crm\\api\\users\\User"},"id":{"name":"id","type":"Long","primary":true},"showAsTab":{"name":"show_as_tab","type":"Boolean"},"sequenceNumber":{"name":"sequence_number","type":"Integer"},"globalSearchSupported":{"name":"global_search_supported","type":"Boolean"},"visibility":{"name":"visibility","type":"Integer"},"convertable":{"name":"convertable","type":"Boolean"},"editable":{"name":"editable","type":"Boolean"},"quickCreate":{"name":"quick_create","type":"Boolean"},"profiles":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\profiles\\Profile","name":"profiles","type":"List"},"filterStatus":{"name":"filter_status","type":"Boolean"},"presenceSubMenu":{"name":"presence_sub_menu","type":"Boolean"},"pluralLabel":{"name":"plural_label","type":"String"},"singularLabel":{"name":"singular_label","type":"String"},"parentModule":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\modules\\Module","name":"parent_module","type":"com\\zoho\\crm\\api\\modules\\Module"},"businessCardFieldLimit":{"name":"business_card_field_limit","type":"Integer"},"perPage":{"name":"per_page","type":"Integer"},"viewable":{"name":"viewable","type":"Boolean"},"apiSupported":{"name":"api_supported","type":"Boolean"},"name":{"name":"name","type":"String"},"displayField":{"name":"display_field","type":"String"},"emailtemplateSupport":{"name":"emailTemplate_support","type":"Boolean"},"arguments":{"structure_name":"com\\zoho\\crm\\api\\modules\\Argument","name":"arguments","type":"List"},"triggersSupported":{"name":"triggers_supported","type":"Boolean"},"kanbanView":{"name":"kanban_view","type":"Boolean"},"inventoryTemplateSupported":{"name":"inventory_template_supported","type":"Boolean"},"properties":{"name":"$properties","type":"List"},"searchLayoutFields":{"name":"search_layout_fields","type":"List"},"territory":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\modules\\Territory","name":"territory","type":"com\\zoho\\crm\\api\\modules\\Territory"}},"com\\zoho\\crm\\api\\bulkread\\APIException":{"code":{"values":["INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INVALID_SERVICE_NAME","INVALID_BULK_OPERATION","RESOURCE_NOT_FOUND","MEDIA_TYPE_NOT_SUPPORTED","REQUEST_BODY_NOT_READABLE","REQUEST_BODY_IS_EMPTY","MODULE_NOT_AVAILABLE","NOT_SUPPORTED_FEATURE","NO_PERMISSION","MODULE_NOT_SUPPORTED","JOB_NOT_SUPPORTED","QUERY_NOT_SUPPORTED","INVALID_CALLBACK_URL","INVALID_CALLBACK_METHOD","JOIN_LIMIT_EXCEEDED","CRITERIA_NOT_SUPPORTED","INVALID_CRITERIA","AMBIGUOUS_CRITERIA","AMBIGUOUS_GROUP_IN_CRITERIA","CRITERIA_LIMIT_EXCEEDED","FIELD_IN_CRITERIA_NOT_SUPPORTED","FIELD_AND_COMPARATOR_IN_CRITERIA_NOT_COMPATIBLE","FIELD_IN_CRITERIA_NOT_AVAILABLE","FIELD_COMPARATOR_IN_CRITERIA_NOT_SUPPORTED","VALUE_IN_CRITERIA_NOT_SUPPORTED","FIELD_AND_VALUE_IN_CRITERIA_NOT_COMPATIBLE","COMPARATOR_AND_VALUE_IN_CRITERIA_NOT_COMPATIBLE","COMPARATOR_AND_ENCRYPTED_VALUE_IN_CRITERIA_NOT_COMPATIBLE","GROUP_OPERATOR_NOT_SUPPORTED","FIELD_NOT_AVAILABLE","FIELD_NOT_SUPPORTED","VALUE_LIMIT_EXCEEDED_IN_CRITERIA","PAGE_NOT_SUPPORTED","PAGE_RANGE_EXCEEDED","TOO_MANY_REQUESTS","CALLBACK_FAILURE","INTERNAL_SERVER_ERROR","INTERNAL_ERROR"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"resource","type":"String"},{"name":"message","type":"String"},{"name":"expected_data_type","type":"String"},{"name":"info_message","type":"String"},{"name":"parent_api_name","type":"String"},{"name":"comparator","type":"String"},{"name":"value","type":"String"},{"name":"api_name","type":"String"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Provided service name %s is not valid/not supported","Requested operation is an invalid bulk operation","record not in process","The requested resource doesn't exist.","Media type is not supported.","Unable to parse the request body.","Request body is empty.","Requested module '%s' is not available.","Feature is not supported"," permission denied","Invalid module for the query. Module '%s' is not supported.","Invalid bulk %s job.","Invalid query for bulk %s job. Query '%s' is not supported.","Invalid URL '%s' for callback.","Invalid request method %s for callback.","Join limit exceeded for the query. Maximum number of joins supported in a query is %d","Invalid criteria for the query. Criteria %s is not supported.","Invalid criteria %s for the query.","Ambiguous criteria %s. Criteria can have either {group"," group_operator} or {api_name"," comparator"," value}.","Ambiguous group in criteria %s. Group should be used only when there are more than one criteria","Number of criteria exceeded the maximum limit of %d","Field api name '%s' for criteria %s is not supported.","Field api name '%s' is not supported with comparator '%s' for criteria %s.","Field api name '%s' is not available for criteria %s. Check visibility and permission for the field","Field api name '%s' doesn't support this comparator '%s' for criteria %s.","Value '%s' is not supported for criteria %s.","Field '%s' is not supported with value '%s' for criteria %s.","Comparator '%s' is not supported with value '%s' for criteria %s.","Comparator '%s' is not supported with value '%s' for criteria %s as the value is encrypted.","Criteria %s doesn't support this logical group operator '%s'. Supported operators are 'and'"," 'or'.","Requested field api name '%s' is not available for the module '%s'. Check permission or visibility for the field.","Invalid field for the module provided in fields. Field api name '%s' is not supported for this module '%s'.","Value exceeded limit %d","Invalid page number for query. Page %s is not supported for the query.","Invalid page number for query. Page %s is not supported for the query. Page range is from %d to %d.","Many requests fired in concurrent than the allowed limit","Callback failed after %d attempts.","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\tags\\ConflictWrapper":{"conflictId":{"name":"conflict_id","type":"String","required":true}},"com\\zoho\\crm\\api\\taxes\\ResponseWrapper":{"preference":{"structure_name":"com\\zoho\\crm\\api\\taxes\\Preference","name":"preference","type":"com\\zoho\\crm\\api\\taxes\\Preference"},"taxes":{"structure_name":"com\\zoho\\crm\\api\\taxes\\Tax","name":"taxes","type":"List"}},"com\\zoho\\crm\\api\\layouts\\Section":{"displayLabel":{"name":"display_label","type":"String"},"sequenceNumber":{"name":"sequence_number","type":"Integer"},"issubformsection":{"name":"isSubformSection","type":"Boolean"},"tabTraversal":{"name":"tab_traversal","type":"Integer"},"apiName":{"name":"api_name","type":"String"},"generatedType":{"name":"generated_type","type":"String"},"name":{"name":"name","type":"String"},"columnCount":{"name":"column_count","type":"Integer"},"fields":{"structure_name":"com\\zoho\\crm\\api\\fields\\Field","name":"fields","type":"List"},"properties":{"structure_name":"com\\zoho\\crm\\api\\layouts\\Properties","name":"properties","type":"com\\zoho\\crm\\api\\layouts\\Properties"}},"com\\zoho\\crm\\api\\notification\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"structure_name":"com\\zoho\\crm\\api\\notification\\Notification","name":"events","type":"List"},{"name":"resource_uri","type":"String"},{"name":"resource_id","type":"String"},{"name":"channel_id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["Successfully subscribed for actions-watch of the given module","Successfully un-subscribed from actions-watch","Successfully updated the subscribe details","Successfully removed the subscribe details"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\currencies\\BaseCurrencyWrapper":{"baseCurrency":{"structure_name":"com\\zoho\\crm\\api\\currencies\\Currency","name":"base_currency","type":"com\\zoho\\crm\\api\\currencies\\Currency","required":true}},"com\\zoho\\crm\\api\\contactroles\\ResponseWrapper":{"contactRoles":{"structure_name":"com\\zoho\\crm\\api\\contactroles\\ContactRole","name":"contact_roles","type":"List"}},"com\\zoho\\crm\\api\\blueprint\\BluePrint":{"processInfo":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\blueprint\\ProcessInfo","name":"process_info","type":"com\\zoho\\crm\\api\\blueprint\\ProcessInfo"},"data":{"structure_name":"com\\zoho\\crm\\api\\record\\Record","required_in_update":true,"name":"data","type":"com\\zoho\\crm\\api\\record\\Record","skip_mandatory":true},"transitionId":{"required_in_update":true,"name":"transition_id","type":"Long"},"transitions":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\blueprint\\Transition","name":"transitions","type":"List"}},"com\\zoho\\crm\\api\\fields\\MultiSelectLookup":{"displayLabel":{"name":"display_label","type":"String"},"apiName":{"name":"api_name","type":"String"},"connectedlookupApiname":{"name":"connectedlookup_apiname","type":"String"},"lookupApiname":{"name":"lookup_apiname","type":"String"},"linkingModule":{"name":"linking_module","type":"String"},"id":{"name":"id","type":"Long"}},"com\\zoho\\crm\\api\\record\\UpsertRecordsHeader":{"XEXTERNAL":{"name":"X-EXTERNAL","type":"String"}},"com\\zoho\\crm\\api\\relatedrecords\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\relatedrecords\\APIException","com\\zoho\\crm\\api\\relatedrecords\\SuccessResponse"],"interface":true},"com\\zoho\\crm\\api\\fields\\PickListValue":{"displayValue":{"name":"display_value","type":"String"},"sequenceNumber":{"name":"sequence_number","type":"Integer"},"maps":{"name":"maps","type":"List"},"actualValue":{"name":"actual_value","type":"String"},"sysRefName":{"name":"sys_ref_name","type":"String"},"expectedDataType":{"name":"expected_data_type","type":"String"},"type":{"name":"type","type":"String"}},"com\\zoho\\crm\\api\\notification\\ActionWrapper":{"watch":{"structure_name":"com\\zoho\\crm\\api\\notification\\ActionResponse","name":"watch","type":"List"}},"com\\zoho\\crm\\api\\sharerecords\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\sharerecords\\APIException","com\\zoho\\crm\\api\\sharerecords\\ActionWrapper"],"interface":true},"com\\zoho\\crm\\api\\bulkread\\CallBack":{"method":{"values":["post"],"name":"method","type":"com\\zoho\\crm\\api\\util\\Choice","required":true},"url":{"name":"url","type":"String","required":true}},"com\\zoho\\crm\\api\\customviews\\GetCustomViewsParam":{"perPage":{"name":"per_page","type":"Integer"},"module":{"name":"module","type":"String"},"page":{"name":"page","type":"Integer"}},"com\\zoho\\crm\\api\\file\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\file\\SuccessResponse","com\\zoho\\crm\\api\\file\\APIException"],"interface":true},"com\\zoho\\crm\\api\\users\\Shift":{"name":{"name":"name","type":"String"},"id":{"name":"id","type":"Long"}},"com\\zoho\\crm\\api\\customviews\\Range":{"from":{"name":"from","type":"Integer"},"to":{"name":"to","type":"Integer"}},"com\\zoho\\crm\\api\\relatedrecords\\FileBodyWrapper":{"file":{"name":"file","type":"com\\zoho\\crm\\api\\util\\StreamWrapper","required":true}},"com\\zoho\\crm\\api\\users\\RequestWrapper":{"users":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"users","max-length":1,"type":"List","required":true,"min-length":1}},"com\\zoho\\crm\\api\\variablegroups\\VariableGroup":{"displayLabel":{"name":"display_label","type":"String"},"apiName":{"name":"api_name","type":"String"},"name":{"name":"name","type":"String"},"description":{"name":"description","type":"String"},"id":{"name":"id","type":"Long","primary":true}},"com\\zoho\\crm\\api\\tags\\GetRecordCountForTagParam":{"module":{"name":"module","type":"String","required":true}},"com\\zoho\\crm\\api\\variablegroups\\APIException":{"code":{"values":["INTERNAL_ERROR","OAUTH_SCOPE_MISMATCH","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\record\\GetRecordsParam":{"cvid":{"name":"cvid","type":"String"},"endDateTime":{"name":"endDateTime","type":"DateTime"},"includeChild":{"name":"include_child","type":"String"},"uid":{"name":"uid","type":"String"},"approved":{"name":"approved","type":"String"},"perPage":{"name":"per_page","type":"Integer"},"startDateTime":{"name":"startDateTime","type":"DateTime"},"converted":{"name":"converted","type":"String"},"sortOrder":{"name":"sort_order","type":"String"},"ids":{"name":"ids","type":"Long","required":true},"territoryId":{"name":"territory_id","type":"String"},"sortBy":{"name":"sort_by","type":"String"},"page":{"name":"page","type":"Integer"},"fields":{"name":"fields","type":"String"}},"com\\zoho\\crm\\api\\taxes\\Tax":{"displayLabel":{"name":"display_label","type":"String"},"sequenceNumber":{"name":"sequence_number","type":"Integer"},"name":{"name":"name","type":"String","required":true},"id":{"name":"id","type":"Long","primary":true},"value":{"name":"value","type":"Float","required":true}},"com\\zoho\\crm\\api\\contactroles\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\contactroles\\SuccessResponse","com\\zoho\\crm\\api\\contactroles\\APIException"],"interface":true},"com\\zoho\\crm\\api\\record\\RemindAt":{"alarm":{"name":"ALARM","type":"String","required":true}},"com\\zoho\\crm\\api\\sharerecords\\ResponseWrapper":{"share":{"structure_name":"com\\zoho\\crm\\api\\sharerecords\\ShareRecord","name":"share","type":"List"},"shareableUser":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"shareable_user","type":"List"}},"com\\zoho\\crm\\api\\bulkwrite\\FileBodyWrapper":{"file":{"name":"file","type":"com\\zoho\\crm\\api\\util\\StreamWrapper","required":true}},"com\\zoho\\crm\\api\\record\\MassUpdateActionWrapper":{"data":{"structure_name":"com\\zoho\\crm\\api\\record\\MassUpdateActionResponse","name":"data","type":"List"}},"com\\zoho\\crm\\api\\fields\\RelatedDetails":{"displayLabel":{"name":"display_label","type":"String"},"apiName":{"name":"api_name","type":"String"},"module":{"structure_name":"com\\zoho\\crm\\api\\fields\\Module","name":"module","type":"com\\zoho\\crm\\api\\fields\\Module"},"id":{"name":"id","type":"Long"},"type":{"name":"_type","type":"String"}},"com\\zoho\\crm\\api\\fields\\ToolTip":{"name":{"name":"name","type":"String"},"value":{"name":"value","type":"String"}},"com\\zoho\\crm\\api\\fields\\GetFieldsParam":{"module":{"name":"module","type":"String"},"type":{"name":"type","type":"String"}},"com\\zoho\\crm\\api\\attachments\\UploadLinkAttachmentParam":{"attachmentUrl":{"name":"attachmentUrl","type":"String"}},"com\\zoho\\crm\\api\\record\\Consent":{"owner":{"lookup":true,"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Owner","type":"com\\zoho\\crm\\api\\users\\User"},"mailSentTime":{"name":"Mail_Sent_Time","type":"DateTime"},"consentThrough":{"name":"Consent_Through","type":"String"},"contactThroughSocial":{"name":"Contact_Through_Social","type":"Boolean"},"contactThroughPhone":{"name":"Contact_Through_Phone","type":"Boolean"},"contactThroughSurvey":{"name":"Contact_Through_Survey","type":"Boolean"},"consentDate":{"name":"Consent_Date","type":"Date"},"dataProcessingBasis":{"name":"Data_Processing_Basis","type":"String"},"contactThroughEmail":{"name":"Contact_Through_Email","type":"Boolean"},"consentRemarks":{"name":"Consent_Remarks","type":"String"}},"com\\zoho\\crm\\api\\record\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"duplicateField":{"name":"duplicate_field","type":"String"},"action":{"values":["insert","update"],"name":"action","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"Modified_Time","type":"DateTime"},{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Modified_By","type":"com\\zoho\\crm\\api\\users\\User"},{"name":"Created_Time","type":"DateTime"},{"name":"id","type":"Long"},{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"Created_By","type":"com\\zoho\\crm\\api\\users\\User"}],"name":"details","type":"Map"},"message":{"values":["record updated","record deleted","record added","photo uploaded successfully","Photo deleted"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\record\\Territory":{"id":{"name":"id","type":"Long"},"includeChild":{"name":"include_child","type":"Boolean"}},"com\\zoho\\crm\\api\\blueprint\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"name":"details","type":"Map"},"message":{"values":["transition updated successfully"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\sharerecords\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\sharerecords\\SuccessResponse","com\\zoho\\crm\\api\\sharerecords\\APIException"],"interface":true},"com\\zoho\\crm\\api\\currencies\\Format":{"thousandSeparator":{"values":["Period","Comma","Space"],"name":"thousand_separator","type":"com\\zoho\\crm\\api\\util\\Choice","required":true},"decimalPlaces":{"required_in_update":true,"values":["0","2","3"],"name":"decimal_places","type":"com\\zoho\\crm\\api\\util\\Choice","required":true},"decimalSeparator":{"values":["Period","Comma"],"name":"decimal_separator","type":"com\\zoho\\crm\\api\\util\\Choice","required":true}},"com\\zoho\\crm\\api\\notes\\GetNoteHeader":{"IfModifiedSince":{"name":"If-Modified-Since","type":"DateTime","required":true}},"com\\zoho\\crm\\api\\modules\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\modules\\APIException","com\\zoho\\crm\\api\\modules\\ResponseWrapper"],"interface":true},"com\\zoho\\crm\\api\\currencies\\ActionWrapper":{"currencies":{"structure_name":"com\\zoho\\crm\\api\\currencies\\ActionResponse","name":"currencies","type":"List"}},"com\\zoho\\crm\\api\\currencies\\BaseCurrencyActionWrapper":{"baseCurrency":{"structure_name":"com\\zoho\\crm\\api\\currencies\\ActionResponse","name":"base_currency","interface":true,"type":"com\\zoho\\crm\\api\\currencies\\ActionResponse"}},"com\\zoho\\crm\\api\\notes\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\notes\\SuccessResponse","com\\zoho\\crm\\api\\notes\\APIException"],"interface":true},"com\\zoho\\crm\\api\\notes\\GetNoteParam":{"fields":{"name":"fields","type":"String"}},"com\\zoho\\crm\\api\\modules\\GetModulesHeader":{"IfModifiedSince":{"name":"If-Modified-Since","type":"DateTime"}},"com\\zoho\\crm\\api\\contactroles\\SuccessResponse":{"code":{"values":["SUCCESS"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["contact role added","contact role updated","contact role deleted"],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["success"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\currencies\\ActionResponse":{"classes":["com\\zoho\\crm\\api\\currencies\\SuccessResponse","com\\zoho\\crm\\api\\currencies\\APIException"],"interface":true},"com\\zoho\\crm\\api\\tags\\ActionHandler":{"classes":["com\\zoho\\crm\\api\\tags\\ActionWrapper","com\\zoho\\crm\\api\\tags\\APIException"],"interface":true},"com\\zoho\\crm\\api\\fields\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\fields\\ResponseWrapper","com\\zoho\\crm\\api\\fields\\APIException"],"interface":true},"com\\zoho\\crm\\api\\notes\\APIException":{"code":{"values":["NO_PERMISSION","INVALID_TOKEN","INVALID_URL_PATTERN","INVALID_REQUEST_METHOD","INTERNAL_ERROR","MANDATORY_NOT_FOUND","INVALID_DATA","NOT_SUPPORTED","REQUIRED_PARAM_MISSING"],"name":"code","type":"com\\zoho\\crm\\api\\util\\Choice"},"details":{"keys":[{"name":"permissions","type":"List"},{"name":"api_name","type":"String"},{"name":"param","type":"String"},{"name":"id","type":"Long"}],"name":"details","type":"Map"},"message":{"values":["invalid oauth token","Please check if the URL trying to access is a correct one","The http request method type is not a valid one","The module name given seems to be invalid","the id given seems to be invalid","One of the expected parameter is missing","record not deleted","Internal server error occurred."],"name":"message","type":"com\\zoho\\crm\\api\\util\\Choice"},"status":{"values":["error"],"name":"status","type":"com\\zoho\\crm\\api\\util\\Choice"}},"com\\zoho\\crm\\api\\relatedrecords\\ResponseHandler":{"classes":["com\\zoho\\crm\\api\\relatedrecords\\APIException","com\\zoho\\crm\\api\\relatedrecords\\ResponseWrapper","com\\zoho\\crm\\api\\relatedrecords\\FileBodyWrapper"],"interface":true},"com\\zoho\\crm\\api\\users\\ResponseWrapper":{"users":{"structure_name":"com\\zoho\\crm\\api\\users\\User","name":"users","type":"List"},"info":{"structure_name":"com\\zoho\\crm\\api\\users\\Info","name":"info","type":"com\\zoho\\crm\\api\\users\\Info"}},"com\\zoho\\crm\\api\\notes\\DeleteNotesParam":{"ids":{"name":"ids","type":"Long","required":true}}} \ No newline at end of file