You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want exclude some property in my class while save firebase realtime database. Android equivalent @Exclude annotation. But i am not finded in library exclude feature.
Sample class
class User: Codable {
var Key: String = ""
var CompanyName: String = ""
//Exclude this property
var MqttServerItem: MqttServer?
init() {
MqttServerItem = MqttServer(key: "", name: "")
}
init(snapshot: DataSnapshot) {
initializeVariables(snapshot: snapshot)
}
}
The text was updated successfully, but these errors were encountered:
Hi,
I want exclude some property in my class while save firebase realtime database. Android equivalent
@Exclude
annotation. But i am not finded in library exclude feature.Sample class
The text was updated successfully, but these errors were encountered: