Exemple #1
0
    def DEVELOPER(cls):

        """
        This method represents the Zoho CRM Developer environment in EU domain
        :return:  An instance of Environment
        """

        return DataCenter.Environment("https://developer.zohoapis.eu", cls().get_iam_url(), cls().get_file_upload_url(), "eu_dev")
Exemple #2
0
    def SANDBOX(cls):

        """
        This method represents the Zoho CRM Sandbox environment in EU domain
        :return: An instance of Environment
        """

        return DataCenter.Environment("https://sandbox.zohoapis.eu", cls().get_iam_url(), cls().get_file_upload_url(), "eu_sdb")
Exemple #3
0
    def PRODUCTION(cls):

        """
        This method represents the Zoho CRM Production environment in EU domain
        :return: An instance of Environments
        """

        return DataCenter.Environment("https://www.zohoapis.eu", cls().get_iam_url(), cls().get_file_upload_url(), "eu_prd")
Exemple #4
0
    def DEVELOPER(cls):

        """
        This method represents the Zoho CRM Developer environment in AU domain
        :return: A Environment class instance.
        """

        return DataCenter.Environment("https://developer.zohoapis.com.au", cls().get_iam_url(), cls().get_file_upload_url(), "au_dev")
Exemple #5
0
    def SANDBOX(cls):

        """
        This method represents the Zoho CRM Sandbox environment in AU domain
        :return: A Environment class instance.
        """

        return DataCenter.Environment("https://sandbox.zohoapis.com.au", cls().get_iam_url(), cls().get_file_upload_url(), "au_sdb")
Exemple #6
0
    def PRODUCTION(cls):

        """
        This method represents the Zoho CRM Production environment in AU domain
        :return: A Environment class instance.
        """

        return DataCenter.Environment("https://www.zohoapis.com.au", cls().get_iam_url(), cls().get_file_upload_url(), "au_prd")