i got 0 value from reponse retrofit with kotlin
i created a POST from android (FrontEnd) into PHP/MySQL (BackEnd).
it did insert the datas into my MySql, but why my object return has 0 value ?
https://i.stack.imgur.com/LBp8v.png▾
eventhough the object is valued
https://i.stack.imgur.com/Rmpgp.png▾
my dataclas :
package com.example.crmclient.model
data class TheHisto(
var IdJob : Int,
var HeureTache : Int
)
My service :
package...