Advertisement
sigitsuryono25

ResponseMutasi

May 14th, 2020
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. data class ResponseMutasi (
  2. @SerializedName("account_number") val account_number : Int,
  3. @SerializedName("date") val date : String,
  4. @SerializedName("description") val description : String,
  5. @SerializedName("amount") val amount : Int,
  6. @SerializedName("type") val type : String,
  7. @SerializedName("note") val note : String,
  8. @SerializedName("balance") val balance : Int,
  9. @SerializedName("created_at") val created_at : String,
  10. @SerializedName("updated_at") val updated_at : String,
  11. @SerializedName("mutation_id") val mutation_id : String,
  12. @SerializedName("token") val token : String,
  13. @SerializedName("bank_id") val bank_id : String,
  14. @SerializedName("bank") val bank : Bank
  15. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement