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

com.fintecsystems.xs2a.java.models.common.ReportLocale.kt Maven / Gradle / Ivy

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

import com.squareup.moshi.Json

enum class ReportLocale(var value: String) {
    @Json(name = "en")
    EN("en"),

    @Json(name = "de")
    DE("de");

    override fun toString() = value
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy