I have a data class which looks something like this
data class SuggestionResponse(
val metadata: Metadata,
val response: Response
)
data class Response(
///blah blah
)
data class Metadata(
val timeleft: String,
val totalTime: String
)
Now my requirement to transform this data into a different type of data object.I want to write an extension function to do this task. let the name of function be hello
I would like to call this extension function like this
suggestionResponse.hello()
how do I write the extension function?.any help would be appreciated