toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final attributeValueList = this.attributeValueList;
  final comparisonOperator = this.comparisonOperator;
  final exists = this.exists;
  final value = this.value;
  return {
    if (attributeValueList != null) 'AttributeValueList': attributeValueList,
    if (comparisonOperator != null)
      'ComparisonOperator': comparisonOperator.toValue(),
    if (exists != null) 'Exists': exists,
    if (value != null) 'Value': value,
  };
}