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

com.ecwid.apiclient.v3.jsontransformer.gson.GsonFieldNamingStrategy.kt Maven / Gradle / Ivy

There is a newer version: 0.347.0
Show newest version
package com.ecwid.apiclient.v3.jsontransformer.gson

import com.ecwid.apiclient.v3.jsontransformer.JsonFieldName
import com.google.gson.FieldNamingStrategy
import java.lang.reflect.Field

class GsonFieldNamingStrategy : FieldNamingStrategy {

	override fun translateName(f: Field): String {
		val annotation = f.getAnnotation(JsonFieldName::class.java)
		return annotation?.fieldName ?: f.name
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy