com.alipay.api.domain.KoubeiOperationContext 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;
/**
* context 保存操作者信息
*
* @author auto create
* @since 1.0, 2022-12-01 17:52:45
*/
public class KoubeiOperationContext extends AlipayObject {
private static final long serialVersionUID = 3222134141528328112L;
/**
* 如果是isv代操作,请传入ISV;如果是其他角色(商户MERCHANT、服务商PROVIDER、服务商员工S_STAFF、商户员工M_STAFF)操作,不用填写。
*/
@ApiField("op_role")
private String opRole;
public String getOpRole() {
return this.opRole;
}
public void setOpRole(String opRole) {
this.opRole = opRole;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy