I am using Retrofit to send and receive requests to my server.
I Have a model like below and I have to send it to my server but some variables in th
You can use transient keyword to ignore fields when requesting api calls
transient
JAVA:
transient String name;
KOTLIN:
@Transient var name: String