toJson method

Map<String, dynamic> toJson()

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,
  };
}