com.alipay.api.domain.RentCarReservationTextRule 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, 2024-04-15 16:05:53
*/
public class RentCarReservationTextRule extends AlipayObject {
private static final long serialVersionUID = 2252614952629818199L;
/**
* 规则的具体文案
*/
@ApiListField("rule_text_list")
@ApiField("string")
private List ruleTextList;
/**
* 标题
*/
@ApiField("title")
private String title;
public List getRuleTextList() {
return this.ruleTextList;
}
public void setRuleTextList(List ruleTextList) {
this.ruleTextList = ruleTextList;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy