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

com.alipay.api.response.AlipayFundEnterprisepayMemberjointurlApplyResponse Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show newest version
package com.alipay.api.response;

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

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.fund.enterprisepay.memberjointurl.apply response.
 * 
 * @author auto create
 * @since 1.0, 2024-07-04 17:31:54
 */
public class AlipayFundEnterprisepayMemberjointurlApplyResponse extends AlipayResponse {

	private static final long serialVersionUID = 4588751987763588853L;

	/** 
	 * 邀请员工二维码链接(包含token信息)
	 */
	@ApiField("apply_url")
	private String applyUrl;

	/** 
	 * 邀请员工二维码链接的token,后续根据token进行校验
	 */
	@ApiField("apply_url_token")
	private String applyUrlToken;

	/** 
	 * 到期时间,小于等于到期时间的都有效
	 */
	@ApiField("expiration_time")
	private String expirationTime;

	public void setApplyUrl(String applyUrl) {
		this.applyUrl = applyUrl;
	}
	public String getApplyUrl( ) {
		return this.applyUrl;
	}

	public void setApplyUrlToken(String applyUrlToken) {
		this.applyUrlToken = applyUrlToken;
	}
	public String getApplyUrlToken( ) {
		return this.applyUrlToken;
	}

	public void setExpirationTime(String expirationTime) {
		this.expirationTime = expirationTime;
	}
	public String getExpirationTime( ) {
		return this.expirationTime;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy