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

com.alipay.api.domain.OperateTask 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.39.218.ALL
Show newest version
package com.alipay.api.domain;

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

/**
 * 操作任务对象
 *
 * @author auto create
 * @since 1.0, 2020-09-11 10:45:33
 */
public class OperateTask extends AlipayObject {

	private static final long serialVersionUID = 3238399883977429733L;

	/**
	 * 操作参数,json格式字符串,根据operation_type值不同,传入不同的值。
当operation_type=RESPONSE时,operation_params不传;
当operation_type=DEAL时,传入的参数包括feedback_code(反馈code)、feedback_remark(反馈备注);
当operation_type=REMARK时,传入的参数包括remark_content(备注内容)
	 */
	@ApiField("operation_params")
	private String operationParams;

	/**
	 * 操作类型:
RESPONSE:任务响应
DEAL:任务处理
REMARK:任务备注
	 */
	@ApiField("operation_type")
	private String operationType;

	/**
	 * 操作任务id
	 */
	@ApiField("task_id")
	private String taskId;

	public String getOperationParams() {
		return this.operationParams;
	}
	public void setOperationParams(String operationParams) {
		this.operationParams = operationParams;
	}

	public String getOperationType() {
		return this.operationType;
	}
	public void setOperationType(String operationType) {
		this.operationType = operationType;
	}

	public String getTaskId() {
		return this.taskId;
	}
	public void setTaskId(String taskId) {
		this.taskId = taskId;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy