toJson method
Implementation
Map<String, dynamic> toJson() {
final objectAttributeActionType = this.objectAttributeActionType;
final objectAttributeUpdateValue = this.objectAttributeUpdateValue;
return {
if (objectAttributeActionType != null)
'ObjectAttributeActionType': objectAttributeActionType.toValue(),
if (objectAttributeUpdateValue != null)
'ObjectAttributeUpdateValue': objectAttributeUpdateValue,
};
}