public GoogleCloudResult(string code, string key)
    {
        _response = PlayServiceUtil.GetGPCodeFromInt(System.Convert.ToInt32(code));
        _message  = _response.ToString();

        _stateKey = System.Convert.ToInt32(key);
    }
    //--------------------------------------
    // INITIALIZE
    //--------------------------------------

    public GooglePlayResult(string code)
    {
        _response = PlayServiceUtil.GetGPCodeFromInt(System.Convert.ToInt32(code));
        _message  = _response.ToString();
    }