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

org.vvcephei.scalaofx.client.SourceClient.scala Maven / Gradle / Ivy

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

import scala.io.Source
import org.vvcephei.scalaofx.lib.parser.TopLevelOfxMessageParser
import org.vvcephei.scalaofx.lib.model.response.{BankStatementResponse, BankStatement}

object SourceClient {
  def bankStatements(source: Source): BankStatementResponse = {
    val parsed = TopLevelOfxMessageParser parse source.mkString
    BankStatement fromOfx parsed.ofx
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy