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

com.fintecsystems.xs2a.java.models.pay.RefundPayoutTransactions.kt Maven / Gradle / Ivy

The newest version!
package com.fintecsystems.xs2a.java.models.pay


import com.squareup.moshi.Json

/**
 *
 * @param transaction Internal XS2A transaction id. This id will be the same for the whole transaction.
 * @param amount The amount of a given payout or refund.
 * @param type The type is payout or refund.
 */

data class RefundPayoutTransactions(
    /* Internal XS2A transaction id. This id will be the same for the whole transaction. */
    @Json(name = "transaction")
    var transaction: String,
    /* The amount of a given payout or refund. */
    @Json(name = "amount")
    var amount: Float,
    /* The type is payout or refund. */
    @Json(name = "type")
    var type: RefundPayoutType
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy