namespace Etor.Wx.Open
{
///
/// 获取代表的第三方App的api执行权限
///
public class GetAuthorizerInvokeAccessTokenRequest
{
///
/// 第三方平台的访问令牌
///
public string component_access_token { get; set; }
///
/// 第三方平台的AppId
///
public string component_appid { get; set; }
///
/// 授权码,在公众号授权后,发送到回调地址上
/// 从拿到authorization_code
///
public string authorization_code
{
get; set;
}
}
}