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

com.alipay.api.response.AlipayOverseasTransferBalanceQueryResponse 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.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.Money;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.overseas.transfer.balance.query response.
 * 
 * @author auto create
 * @since 1.0, 2023-08-21 02:55:43
 */
public class AlipayOverseasTransferBalanceQueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 5782221462441393982L;

	/** 
	 * 账户余额列表
	 */
	@ApiListField("balances")
	@ApiField("money")
	private List balances;

	/** 
	 * 透传信息
	 */
	@ApiField("pass_through_info")
	private String passThroughInfo;

	public void setBalances(List balances) {
		this.balances = balances;
	}
	public List getBalances( ) {
		return this.balances;
	}

	public void setPassThroughInfo(String passThroughInfo) {
		this.passThroughInfo = passThroughInfo;
	}
	public String getPassThroughInfo( ) {
		return this.passThroughInfo;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy