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

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

package com.alipay.api.domain;

import java.util.Date;
import java.util.List;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;

/**
 * tsetaa
 *
 * @author auto create
 * @since 1.0, 2024-02-23 10:24:40
 */
public class AlipaySecurityOpenbizmockTestQueryModel extends AlipayObject {

	private static final long serialVersionUID = 2364947561756547959L;

	/**
	 * test
	 */
	@ApiListField("complex")
	@ApiField("public_complex")
	private List complex;

	/**
	 * test
	 */
	@ApiField("longitude")
	private String longitude;

	/**
	 * TEST
	 */
	@ApiField("mobile_number")
	private String mobileNumber;

	/**
	 * test
	 */
	@ApiListField("test_boolean")
	@ApiField("boolean")
	private List testBoolean;

	/**
	 * ["2021-01-01"]
	 */
	@ApiListField("test_date")
	@ApiField("date")
	private List testDate;

	/**
	 * [2,3]
	 */
	@ApiListField("test_number")
	@ApiField("number")
	private List testNumber;

	/**
	 * [1.33,2.33]
	 */
	@ApiListField("test_price")
	@ApiField("price")
	private List testPrice;

	/**
	 * string1
	 */
	@ApiField("test_string")
	private String testString;

	/**
	 * ["string1","string2"]
	 */
	@ApiListField("test_string_not_list")
	@ApiField("string")
	private List testStringNotList;

	public List getComplex() {
		return this.complex;
	}
	public void setComplex(List complex) {
		this.complex = complex;
	}

	public String getLongitude() {
		return this.longitude;
	}
	public void setLongitude(String longitude) {
		this.longitude = longitude;
	}

	public String getMobileNumber() {
		return this.mobileNumber;
	}
	public void setMobileNumber(String mobileNumber) {
		this.mobileNumber = mobileNumber;
	}

	public List getTestBoolean() {
		return this.testBoolean;
	}
	public void setTestBoolean(List testBoolean) {
		this.testBoolean = testBoolean;
	}

	public List getTestDate() {
		return this.testDate;
	}
	public void setTestDate(List testDate) {
		this.testDate = testDate;
	}

	public List getTestNumber() {
		return this.testNumber;
	}
	public void setTestNumber(List testNumber) {
		this.testNumber = testNumber;
	}

	public List getTestPrice() {
		return this.testPrice;
	}
	public void setTestPrice(List testPrice) {
		this.testPrice = testPrice;
	}

	public String getTestString() {
		return this.testString;
	}
	public void setTestString(String testString) {
		this.testString = testString;
	}

	public List getTestStringNotList() {
		return this.testStringNotList;
	}
	public void setTestStringNotList(List testStringNotList) {
		this.testStringNotList = testStringNotList;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy