com.alipay.api.response.KoubeiMemberBrandownerNameQueryResponse 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: koubei.member.brandowner.name.query response.
*
* @author auto create
* @since 1.0, 2016-07-06 10:48:20
*/
public class KoubeiMemberBrandownerNameQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 6673497619318198881L;
/**
* 品牌商名称
*/
@ApiField("name")
private String name;
public void setName(String name) {
this.name = name;
}
public String getName( ) {
return this.name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy