com.alipay.api.response.AlipayCommerceTransportIntelligentizeChargescheduleCreateResponse 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.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.commerce.transport.intelligentize.chargeschedule.create response.
*
* @author auto create
* @since 1.0, 2024-07-04 16:56:03
*/
public class AlipayCommerceTransportIntelligentizeChargescheduleCreateResponse extends AlipayResponse {
private static final long serialVersionUID = 3371332275317993565L;
/**
* 扩展信息
*/
@ApiField("ext_info")
private String extInfo;
/**
* 支付宝服务任务ID,保证全局唯一
*/
@ApiField("service_task_id")
private String serviceTaskId;
/**
* 服务任务类型
*/
@ApiField("service_task_type")
private String serviceTaskType;
public void setExtInfo(String extInfo) {
this.extInfo = extInfo;
}
public String getExtInfo( ) {
return this.extInfo;
}
public void setServiceTaskId(String serviceTaskId) {
this.serviceTaskId = serviceTaskId;
}
public String getServiceTaskId( ) {
return this.serviceTaskId;
}
public void setServiceTaskType(String serviceTaskType) {
this.serviceTaskType = serviceTaskType;
}
public String getServiceTaskType( ) {
return this.serviceTaskType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy