toValue method
Implementation
String toValue() {
switch (this) {
case DocumentAttributeValueType.stringValue:
return 'STRING_VALUE';
case DocumentAttributeValueType.stringListValue:
return 'STRING_LIST_VALUE';
case DocumentAttributeValueType.longValue:
return 'LONG_VALUE';
case DocumentAttributeValueType.dateValue:
return 'DATE_VALUE';
}
}