
com.alipay.api.response.ZhimaCustomerJobworthAuthenticationpluginQueryResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: zhima.customer.jobworth.authenticationplugin.query response.
*
* @author auto create
* @since 1.0, 2023-05-31 10:26:57
*/
public class ZhimaCustomerJobworthAuthenticationpluginQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 6658299254532953683L;
/**
* 用于端外直接跳转链接模式的Url入参
*/
@ApiField("landing_url")
private String landingUrl;
/**
* 用于直接跳转链接模式的Url入参
*/
@ApiField("scheme_url")
private String schemeUrl;
public void setLandingUrl(String landingUrl) {
this.landingUrl = landingUrl;
}
public String getLandingUrl( ) {
return this.landingUrl;
}
public void setSchemeUrl(String schemeUrl) {
this.schemeUrl = schemeUrl;
}
public String getSchemeUrl( ) {
return this.schemeUrl;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy