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

com.alipay.api.domain.AuthInfo 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, 2024-08-01 20:28:52
 */
public class AuthInfo extends AlipayObject {

	private static final long serialVersionUID = 2341536769524485271L;

	/**
	 * 授权号,协议授权或者cif协议对应的授权号。
	 */
	@ApiField("auth_code")
	private String authCode;

	/**
	 * 授权类型
	 */
	@ApiField("auth_type")
	private String authType;

	public String getAuthCode() {
		return this.authCode;
	}
	public void setAuthCode(String authCode) {
		this.authCode = authCode;
	}

	public String getAuthType() {
		return this.authType;
	}
	public void setAuthType(String authType) {
		this.authType = authType;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy