cn.com.antcloud.api.ato.v1_0.request.CancelWithholdActivepayRequest Maven / Gradle / Ivy
//
// Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//
package cn.com.antcloud.api.ato.v1_0.request;
import cn.com.antcloud.api.ato.v1_0.response.CancelWithholdActivepayResponse;
import cn.com.antcloud.api.product.AntCloudProdRequest;
import java.lang.Long;
import java.lang.String;
import javax.validation.constraints.NotNull;
/**
* 代扣主动支付取消 */
public class CancelWithholdActivepayRequest extends AntCloudProdRequest {
@NotNull
private String orderId;
@NotNull
private Long periodNum;
private String tradeNo;
public CancelWithholdActivepayRequest(String productInstanceId) {
super("antchain.ato.withhold.activepay.cancel", "1.0", "Java-SDK-20240923", productInstanceId);
}
public CancelWithholdActivepayRequest() {
super("antchain.ato.withhold.activepay.cancel", "1.0", null);
this.setSdkVersion("Java-SDK-20240923");
}
/**
* 订单id 长度不可超过50 */
public String getOrderId() {
return this.orderId;
}
/**
* 订单id 长度不可超过50 */
public void setOrderId(String orderId) {
this.orderId = orderId;
}
/**
* 第几期 */
public Long getPeriodNum() {
return this.periodNum;
}
/**
* 第几期 */
public void setPeriodNum(Long periodNum) {
this.periodNum = periodNum;
}
/**
* 支付宝支付订单号,当传递此单号时,只会取消指定单据号,不传递时取消当前代扣 */
public String getTradeNo() {
return this.tradeNo;
}
/**
* 支付宝支付订单号,当传递此单号时,只会取消指定单据号,不传递时取消当前代扣 */
public void setTradeNo(String tradeNo) {
this.tradeNo = tradeNo;
}
}