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

org.vvcephei.scalaofx.lib.message.BankStatementRequest.scala Maven / Gradle / Ivy

There is a newer version: 1.6
Show newest version
package org.vvcephei.scalaofx.lib.message

import org.vvcephei.scalaofx.lib.model.Account
import org.joda.time.DateTime

case class BankStatementRequest(account: Account, startDate: DateTime) {
  lazy val toOfx =
      
        { Util.trnuid() }
        
          
            { account.routing.get }
            { account.account.get }
            { account.`type`.get }
          
          
            { Util.toDateString(startDate) }
            Y
          
        
      
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy