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

com.alipay.api.response.AlipayInsSceneEcommercePurchaselinkAuthResponse 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 java.util.Date;
import com.alipay.api.internal.mapping.ApiField;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.ins.scene.ecommerce.purchaselink.auth response.
 * 
 * @author auto create
 * @since 1.0, 2024-05-15 15:12:01
 */
public class AlipayInsSceneEcommercePurchaselinkAuthResponse extends AlipayResponse {

	private static final long serialVersionUID = 3354118665688636691L;

	/** 
	 * 授权token
	 */
	@ApiField("authed_token")
	private String authedToken;

	/** 
	 * 已授权的订购url
	 */
	@ApiField("authed_url")
	private String authedUrl;

	/** 
	 * 过期时间
	 */
	@ApiField("expiration")
	private Date expiration;

	public void setAuthedToken(String authedToken) {
		this.authedToken = authedToken;
	}
	public String getAuthedToken( ) {
		return this.authedToken;
	}

	public void setAuthedUrl(String authedUrl) {
		this.authedUrl = authedUrl;
	}
	public String getAuthedUrl( ) {
		return this.authedUrl;
	}

	public void setExpiration(Date expiration) {
		this.expiration = expiration;
	}
	public Date getExpiration( ) {
		return this.expiration;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy