com.alipay.api.domain.KoubeiMerchantRoleDetailQueryModel 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;
/**
* isv权限查询
*
* @author auto create
* @since 1.0, 2022-06-17 16:45:01
*/
public class KoubeiMerchantRoleDetailQueryModel extends AlipayObject {
private static final long serialVersionUID = 8531351595362199331L;
/**
* isv回传的auth_code,通过auth_code校验当前操作人与商户的关系
*/
@ApiField("auth_code")
private String authCode;
/**
* 角色id
*/
@ApiField("role_id")
private String roleId;
public String getAuthCode() {
return this.authCode;
}
public void setAuthCode(String authCode) {
this.authCode = authCode;
}
public String getRoleId() {
return this.roleId;
}
public void setRoleId(String roleId) {
this.roleId = roleId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy