XML JAXB Serializer and Deserializer
// Loan Application
public type LoanApplication = {
id: Int;
firstname: Text;
lastname: Text;
zipcode: Text;
ssn: Text;
amount: Float;
term: Int16;
created: Int;
};
// Loan Offer
public type LoanOffer = {
providerid: Text;
providername: Text;
applicationid: Int;
apr: Float;
created: Int;
};Last updated