com.alipay.api.domain.AlipayOpenAuthIndustryPlatformCreateTokenModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 行业平台获取授权码
*
* @author auto create
* @since 1.0, 2016-10-26 18:05:15
*/
public class AlipayOpenAuthIndustryPlatformCreateTokenModel extends AlipayObject {
private static final long serialVersionUID = 5794352892697162266L;
/**
* isv的appid
*/
@ApiField("isv_appid")
private String isvAppid;
/**
* auth_mycar_violation
*/
@ApiField("scope")
private String scope;
public String getIsvAppid() {
return this.isvAppid;
}
public void setIsvAppid(String isvAppid) {
this.isvAppid = isvAppid;
}
public String getScope() {
return this.scope;
}
public void setScope(String scope) {
this.scope = scope;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy