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

org.adorsys.psd2.xs2a.domain.EncryptedCashAccount25 Maven / Gradle / Ivy

There is a newer version: 2.2.3
Show newest version
package org.adorsys.psd2.xs2a.domain;

import org.adorsys.psd2.iso20022.camt053.CashAccount25;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;

@ApiModel(description="This is the represation of an encrypted cash account", value="EncryptedCashAccount25" )
public class EncryptedCashAccount25 {
	private String jweString;
	private CashAccount25 model;
	
	@ApiModelProperty(value = "The JWE encrypted value of the cash account.", required=true)
	public String getJweString() {
		return jweString;
	}
	public void setJweString(String jweString) {
		this.jweString = jweString;
	}

	@ApiModelProperty(value = "Sample cash account object")
	public CashAccount25 getModel() {
		return model;
	}
	public void setModel(CashAccount25 model) {
		this.model = model;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy