All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.ProductProperty Maven / Gradle / Ivy

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, 2024-06-05 15:17:38
 */
public class ProductProperty extends AlipayObject {

	private static final long serialVersionUID = 5442448936649219948L;

	/**
	 * 属性名
	 */
	@ApiField("text")
	private String text;

	/**
	 * 属性值
	 */
	@ApiListField("values")
	@ApiField("string")
	private List values;

	public String getText() {
		return this.text;
	}
	public void setText(String text) {
		this.text = text;
	}

	public List getValues() {
		return this.values;
	}
	public void setValues(List values) {
		this.values = values;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy