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