com.alipay.api.domain.KoubeiItemDescription Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 商品描述
*
* @author auto create
* @since 1.0, 2017-09-22 18:18:37
*/
public class KoubeiItemDescription extends AlipayObject {
private static final long serialVersionUID = 1275239499666627811L;
/**
* 标题下的描述列表,列表类型,每项不得为空,最多10项,总长度不能超过2600个中文字符
*/
@ApiListField("details")
@ApiField("string")
private List details;
/**
* 描述标题,不得超过40个中文字符
*/
@ApiField("title")
private String title;
public List getDetails() {
return this.details;
}
public void setDetails(List details) {
this.details = details;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
}