From 1c3b1ec4e5c1d4476688e36b367095a9cb1599af Mon Sep 17 00:00:00 2001 From: HoodyH Date: Tue, 11 Nov 2025 11:46:59 +0100 Subject: [PATCH] Update docs/api-guide/fields.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- docs/api-guide/fields.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-guide/fields.md b/docs/api-guide/fields.md index f5d93835b..0b4991589 100644 --- a/docs/api-guide/fields.md +++ b/docs/api-guide/fields.md @@ -279,7 +279,7 @@ Corresponds to `django.db.models.fields.BigIntegerField`. * `max_value` Validate that the number provided is no greater than this value. * `min_value` Validate that the number provided is no less than this value. -* `coerce_to_string` Set to `True` if string values should be returned for the representation, or `False` if `BigInteger` objects should be returned. Defaults to the same value as the `COERCE_BIGINT_TO_STRING` settings key, which will be `True` unless overridden. If `BigInteger` objects are returned by the serializer, then the final output format will be determined by the renderer. +* `coerce_to_string` Set to `True` if string values should be returned for the representation, or `False` if `BigInteger` objects should be returned. Defaults to the same value as the `COERCE_BIGINT_TO_STRING` settings key, which will be `False` unless overridden. If `BigInteger` objects are returned by the serializer, then the final output format will be determined by the renderer. ## FloatField