com.alipay.api.domain.KoubeiMerchantOperatorUnfreezeModel 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.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 解锁操作员接口
*
* @author auto create
* @since 1.0, 2018-07-13 20:43:42
*/
public class KoubeiMerchantOperatorUnfreezeModel extends AlipayObject {
private static final long serialVersionUID = 7147191497636318498L;
/**
* 授权码
*/
@ApiField("auth_code")
private String authCode;
/**
* 操作员ID
*/
@ApiField("operator_id")
private String operatorId;
public String getAuthCode() {
return this.authCode;
}
public void setAuthCode(String authCode) {
this.authCode = authCode;
}
public String getOperatorId() {
return this.operatorId;
}
public void setOperatorId(String operatorId) {
this.operatorId = operatorId;
}
}