com.alipay.api.domain.Option 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 com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 展示文本和对应取值的映射关系
*
* @author auto create
* @since 1.0, 2017-06-14 11:09:05
*/
public class Option extends AlipayObject {
private static final long serialVersionUID = 1821195194319789528L;
/**
* 文本,通常用于理解对应的取值
*/
@ApiField("text")
private String text;
/**
* 取值,通常使用简单的数字或字符串
*/
@ApiField("value")
private String value;
public String getText() {
return this.text;
}
public void setText(String text) {
this.text = text;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}