tech.carpentum.sdk.payment.internal.generated.model.AuthTokenRequestJsonAdapter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payment-client-v2 Show documentation
Show all versions of payment-client-v2 Show documentation
Carpentum Payment system Java SDK
//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.AuthTokenRequest
class AuthTokenRequestJsonAdapter {
@FromJson
fun fromJson(json: AuthTokenRequestJson): AuthTokenRequest {
val builder = AuthTokenRequest.builder()
builder.merchantCode(json.merchantCode)
builder.secret(json.secret)
builder.validitySecs(json.validitySecs)
builder.operations(json.operations?.toList())
return builder.build()
}
@ToJson
fun toJson(model: AuthTokenRequest): AuthTokenRequestJson {
val json = AuthTokenRequestJson()
json.merchantCode = model.merchantCode
json.secret = model.secret
json.validitySecs = model.validitySecs.orElse(null)
json.operations = model.operations.ifEmpty { null }
return json
}
@FromJson
fun fromJsonImpl(model: AuthTokenRequest): AuthTokenRequestImpl {
return model as AuthTokenRequestImpl
}
@ToJson
fun toJsonImpl(impl: AuthTokenRequestImpl): AuthTokenRequest {
return impl
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy