File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -13,22 +13,22 @@ class Platform(Creatable):
1313 created_at : dt .datetime
1414 name : str
1515 rfc_curp : Optional [str ] = None
16- establishment_date : Optional [str ] = None
16+ establishment_date : Optional [dt . date ] = None
1717 country : Optional [Country ] = None
1818 state : Optional [State ] = None
1919 economic_activity : Optional [str ] = None
2020
2121 class Config :
2222 fields = {
2323 'name' : {'description' : 'name of the platform being created' },
24- 'rfc_curp' : {'description' : 'name of the platform being created ' },
24+ 'rfc_curp' : {'description' : 'RFC or CURP of the platform' },
2525 'establishment_date' : {
26- 'description' : 'name of the platform being created '
26+ 'description' : 'when the platform was established '
2727 },
28- 'country' : {'description' : 'name of the platform being created ' },
29- 'state' : {'description' : 'name of the platform being created ' },
28+ 'country' : {'description' : 'country where the platform resides ' },
29+ 'state' : {'description' : 'state where the platform resides ' },
3030 'economic_activity' : {
31- 'description' : 'name of the platform being created '
31+ 'description' : 'what the platform does '
3232 },
3333 }
3434 schema_extra = {
Original file line number Diff line number Diff line change 1- __version__ = '0.10.1.dev6 '
1+ __version__ = '0.10.1.dev7 '
22CLIENT_VERSION = __version__
33API_VERSION = '2020-03-19'
Original file line number Diff line number Diff line change 11requests == 2.27.1
2- cuenca-validations == 0.10.10.dev0
2+ cuenca-validations == 0.10.10.dev1
33dataclasses >= 0.7 ;python_version < "3.7"
You can’t perform that action at this time.
0 commit comments