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

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

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show newest version
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-12-05 11:04:10
 */
public class RentCarGuaranteeDetailDescription extends AlipayObject {

	private static final long serialVersionUID = 8134912157418511521L;

	/**
	 * 是否包含该服务
	 */
	@ApiField("contains")
	private Boolean contains;

	/**
	 * 内容列表,每项一行
	 */
	@ApiListField("content")
	@ApiField("string")
	private List content;

	/**
	 * 子内容
	 */
	@ApiListField("sub_content")
	@ApiField("rent_car_guarantee_sub_detail_description")
	private List subContent;

	/**
	 * 表格信息
	 */
	@ApiListField("table")
	@ApiField("rent_car_table_info")
	private List table;

	/**
	 * 标题
	 */
	@ApiField("title")
	private String title;

	public Boolean getContains() {
		return this.contains;
	}
	public void setContains(Boolean contains) {
		this.contains = contains;
	}

	public List getContent() {
		return this.content;
	}
	public void setContent(List content) {
		this.content = content;
	}

	public List getSubContent() {
		return this.subContent;
	}
	public void setSubContent(List subContent) {
		this.subContent = subContent;
	}

	public List getTable() {
		return this.table;
	}
	public void setTable(List table) {
		this.table = table;
	}

	public String getTitle() {
		return this.title;
	}
	public void setTitle(String title) {
		this.title = title;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy