toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final attributeActionType = this.attributeActionType;
  final attributeUpdateValue = this.attributeUpdateValue;
  return {
    if (attributeActionType != null)
      'AttributeActionType': attributeActionType.toValue(),
    if (attributeUpdateValue != null)
      'AttributeUpdateValue': attributeUpdateValue,
  };
}