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

tech.carpentum.sdk.payment.internal.generated.model.IMPSMethodResponseJsonAdapter.kt Maven / Gradle / Ivy

The newest version!
//THE FILE IS GENERATED, DO NOT MODIFY IT MANUALLY!!!
package tech.carpentum.sdk.payment.internal.generated.model;

import com.squareup.moshi.FromJson
import com.squareup.moshi.ToJson
import tech.carpentum.sdk.payment.model.IMPSMethodResponse

class IMPSMethodResponseJsonAdapter {
    @FromJson
    fun fromJson(json: IMPSMethodResponseJson): IMPSMethodResponse {
        val builder = IMPSMethodResponse.builder()
        builder.idPayin(json.idPayin)
        builder.idPayment(json.idPayment)
        builder.account(json.account)
        builder.money(json.money)
        builder.vat(json.vat)
        builder.merchantName(json.merchantName)
        builder.reference(json.reference)
        builder.qrCode(json.qrCode)
        builder.returnUrl(json.returnUrl)
        builder.acceptedAt(json.acceptedAt)
        builder.expireAt(json.expireAt)
        return builder.build()
    }

    @ToJson
    fun toJson(model: IMPSMethodResponse): IMPSMethodResponseJson {
        val json = IMPSMethodResponseJson()
        json.idPayin = model.idPayin
        json.idPayment = model.idPayment
        json.account = model.account
        json.money = model.money
        json.vat = model.vat.orElse(null)
        json.merchantName = model.merchantName
        json.reference = model.reference
        json.qrCode = model.qrCode
        json.returnUrl = model.returnUrl
        json.acceptedAt = model.acceptedAt
        json.expireAt = model.expireAt
        json.paymentMethodCode = model.paymentMethodCode.name
        return json
    }

    @FromJson
    fun fromJsonImpl(model: IMPSMethodResponse): IMPSMethodResponseImpl {
        return model as IMPSMethodResponseImpl
    }

    @ToJson
    fun toJsonImpl(impl: IMPSMethodResponseImpl): IMPSMethodResponse {
        return impl
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy