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

com.alipay.api.domain.AlipayOpenAuthAppCancelModel Maven / Gradle / Ivy

package com.alipay.api.domain;

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

/**
 * 应用授权授权关系取消接口
 *
 * @author auto create
 * @since 1.0, 2023-02-01 17:26:29
 */
public class AlipayOpenAuthAppCancelModel extends AlipayObject {

	private static final long serialVersionUID = 2296336967967155825L;

	/**
	 * 授权方应用ID
	 */
	@ApiField("auth_app_id")
	private String authAppId;

	/**
	 * 授权场景,固定值PLATFORM_APP_AUTH
	 */
	@ApiField("auth_scene")
	private String authScene;

	/**
	 * 当前登录账号支付宝userId
	 */
	@ApiField("operator_user_id")
	private String operatorUserId;

	public String getAuthAppId() {
		return this.authAppId;
	}
	public void setAuthAppId(String authAppId) {
		this.authAppId = authAppId;
	}

	public String getAuthScene() {
		return this.authScene;
	}
	public void setAuthScene(String authScene) {
		this.authScene = authScene;
	}

	public String getOperatorUserId() {
		return this.operatorUserId;
	}
	public void setOperatorUserId(String operatorUserId) {
		this.operatorUserId = operatorUserId;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy