Better tests for string (number) (#3953)

* beter test for string (number)

* fix mapping

* fix mapping in csharp generators
This commit is contained in:
William Cheng
2019-09-30 15:22:44 +08:00
committed by GitHub
parent c8d5701089
commit 7dbda049f0
119 changed files with 1693 additions and 136 deletions

View File

@@ -17,6 +17,7 @@ Name | Type | Description | Notes
**date_time** | **DateTime** | | [optional]
**uuid** | **String** | | [optional]
**password** | **String** | |
**big_decimal** | [**BigDecimal**](BigDecimal.md) | | [optional]
## Code Sample
@@ -35,7 +36,8 @@ instance = Petstore::FormatTest.new(integer: null,
date: null,
date_time: null,
uuid: 72f98069-206d-4f12-9f12-3d1e525a8e84,
password: null)
password: null,
big_decimal: null)
```