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

io.electrum.vas.model.VasMessage Maven / Gradle / Ivy

There is a newer version: 3.19.0
Show newest version
package io.electrum.vas.model;

import java.util.List;

import org.joda.time.DateTime;

public interface VasMessage {
   String getId();

   DateTime getTime();

   List getThirdPartyIdentifiers();

   String getStan();

   String getRrn();

   void setId(String id);

   void setTime(DateTime time);

   void setThirdPartyIdentifiers(List transactionIdentifiers);

   void setStan(String stan);

   void setRrn(String rrn);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy