com.alipay.api.response.AlipayOpenPublicThirdCustomerServiceResponse 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.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.open.public.third.customer.service response.
*
* @author auto create
* @since 1.0, 2016-12-08 12:11:15
*/
public class AlipayOpenPublicThirdCustomerServiceResponse extends AlipayResponse {
private static final long serialVersionUID = 3277419729515383425L;
/**
* 授权给第三方渠道商的服务窗名称
*/
@ApiField("public_name")
private String publicName;
public void setPublicName(String publicName) {
this.publicName = publicName;
}
public String getPublicName( ) {
return this.publicName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy