示例#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")
示例#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")
示例#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")
示例#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")
示例#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")
示例#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")