Skip to content

Instantly share code, notes, and snippets.

@rygelouv
Last active April 26, 2022 05:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rygelouv/f5500bc370d8a4b10805ac2affa6bd3a to your computer and use it in GitHub Desktop.
Save rygelouv/f5500bc370d8a4b10805ac2affa6bd3a to your computer and use it in GitHub Desktop.
data class Transaction(
val id: Long?,
val amount: Double?,
val currency: Currency?,
val reference: String?,
val transactiontype: String?,
val direction: String?,
val correspondent: TransactionCorrespondent?,
val beginDate: Long? = 0,
val endDate: Long? = 0,
val fees: Double? = 0.0,
val taxes: Double? = 0.0,
val commission: Double? = 0.0,
val commissionTaxes: Double? = 0.0,
val status: String?,
val sequence: String?,
val itemType: String?,
val dateDirection: String?,
val rate: Double,
val total: Double?,
val totalFees: Double?
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment