toJson method
Implementation
Map<String, dynamic> toJson() {
final objectAttributeAction = this.objectAttributeAction;
final objectAttributeKey = this.objectAttributeKey;
return {
if (objectAttributeAction != null)
'ObjectAttributeAction': objectAttributeAction,
if (objectAttributeKey != null) 'ObjectAttributeKey': objectAttributeKey,
};
}