com.alipay.api.domain.AlipayEcoMycarParkingConfigQueryModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* ISV系统配置查询接口
*
* @author auto create
* @since 1.0, 2017-07-20 09:54:53
*/
public class AlipayEcoMycarParkingConfigQueryModel extends AlipayObject {
private static final long serialVersionUID = 5766957253511745559L;
/**
* 传入参数固定值:alipay.eco.mycar.parking.userpage.query
*/
@ApiField("interface_name")
private String interfaceName;
/**
* 传入参数固定值:interface_page
*/
@ApiField("interface_type")
private String interfaceType;
public String getInterfaceName() {
return this.interfaceName;
}
public void setInterfaceName(String interfaceName) {
this.interfaceName = interfaceName;
}
public String getInterfaceType() {
return this.interfaceType;
}
public void setInterfaceType(String interfaceType) {
this.interfaceType = interfaceType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy