All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.taobao.api.response.TopAuthTokenCreateResponse Maven / Gradle / Ivy

There is a newer version: 1.8.10
Show newest version
package com.taobao.api.response;

import com.taobao.api.internal.mapping.ApiField;

import com.taobao.api.TaobaoResponse;

/**
 * TOP API: taobao.top.auth.token.create response.
 * 
 * @author top auto create
 * @since 1.0, null
 */
public class TopAuthTokenCreateResponse extends TaobaoResponse {

	private static final long serialVersionUID = 2749793397744416975L;

	/** 
	 * 返回的是json信息,和之前调用https://oauth.taobao.com/tac/token https://oauth.alibaba.com/token 换token返回的字段信息一致
	 */
	@ApiField("token_result")
	private String tokenResult;


	public void setTokenResult(String tokenResult) {
		this.tokenResult = tokenResult;
	}
	public String getTokenResult( ) {
		return this.tokenResult;
	}
	


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy