@@ -28,6 +28,8 @@ class Metadata(object):
28
28
'_path_lower_present' ,
29
29
]
30
30
31
+ _has_required_fields = True
32
+
31
33
def __init__ (self ,
32
34
name = None ,
33
35
path_lower = None ):
@@ -125,6 +127,8 @@ class FileMetadata(Metadata):
125
127
'_size_present' ,
126
128
]
127
129
130
+ _has_required_fields = True
131
+
128
132
def __init__ (self ,
129
133
name = None ,
130
134
path_lower = None ,
@@ -305,6 +309,8 @@ class FolderMetadata(Metadata):
305
309
'_id_present' ,
306
310
]
307
311
312
+ _has_required_fields = True
313
+
308
314
def __init__ (self ,
309
315
name = None ,
310
316
path_lower = None ,
@@ -358,6 +364,8 @@ class DeletedMetadata(Metadata):
358
364
__slots__ = [
359
365
]
360
366
367
+ _has_required_fields = True
368
+
361
369
def __init__ (self ,
362
370
name = None ,
363
371
path_lower = None ):
@@ -418,6 +426,8 @@ class GetMetadataArg(object):
418
426
'_path_present' ,
419
427
]
420
428
429
+ _has_required_fields = True
430
+
421
431
def __init__ (self ,
422
432
path = None ):
423
433
self ._path_value = None
@@ -470,6 +480,8 @@ class ListFolderArg(object):
470
480
'_recursive_present' ,
471
481
]
472
482
483
+ _has_required_fields = True
484
+
473
485
def __init__ (self ,
474
486
path = None ,
475
487
recursive = None ):
@@ -555,6 +567,8 @@ class ListFolderResult(object):
555
567
'_has_more_present' ,
556
568
]
557
569
570
+ _has_required_fields = True
571
+
558
572
def __init__ (self ,
559
573
entries = None ,
560
574
cursor = None ,
@@ -705,6 +719,8 @@ class ListFolderContinueArg(object):
705
719
'_cursor_present' ,
706
720
]
707
721
722
+ _has_required_fields = True
723
+
708
724
def __init__ (self ,
709
725
cursor = None ):
710
726
self ._cursor_value = None
@@ -802,6 +818,8 @@ class ListFolderGetLatestCursorResult(object):
802
818
'_cursor_present' ,
803
819
]
804
820
821
+ _has_required_fields = True
822
+
805
823
def __init__ (self ,
806
824
cursor = None ):
807
825
self ._cursor_value = None
@@ -897,6 +915,8 @@ class DownloadArg(object):
897
915
'_rev_present' ,
898
916
]
899
917
918
+ _has_required_fields = True
919
+
900
920
def __init__ (self ,
901
921
path = None ,
902
922
rev = None ):
@@ -978,6 +998,8 @@ class UploadWriteFailed(object):
978
998
'_upload_session_id_present' ,
979
999
]
980
1000
1001
+ _has_required_fields = True
1002
+
981
1003
def __init__ (self ,
982
1004
reason = None ,
983
1005
upload_session_id = None ):
@@ -1099,6 +1121,8 @@ class UploadSessionOffsetError(object):
1099
1121
'_correct_offset_present' ,
1100
1122
]
1101
1123
1124
+ _has_required_fields = True
1125
+
1102
1126
def __init__ (self ,
1103
1127
correct_offset = None ):
1104
1128
self ._correct_offset_value = None
@@ -1265,6 +1289,8 @@ class UploadSessionStartResult(object):
1265
1289
'_session_id_present' ,
1266
1290
]
1267
1291
1292
+ _has_required_fields = True
1293
+
1268
1294
def __init__ (self ,
1269
1295
session_id = None ):
1270
1296
self ._session_id_value = None
@@ -1318,6 +1344,8 @@ class UploadSessionCursor(object):
1318
1344
'_offset_present' ,
1319
1345
]
1320
1346
1347
+ _has_required_fields = True
1348
+
1321
1349
def __init__ (self ,
1322
1350
session_id = None ,
1323
1351
offset = None ):
@@ -1463,9 +1491,9 @@ class CommitInfo(object):
1463
1491
timestamp, provided by Dropbox desktop clients, mobile clients, and API
1464
1492
apps of when the file was actually created or modified.
1465
1493
:ivar mute: Normally, users are made aware of any file modifications in
1466
- their Dropbox account via notifications in the client software. If True,
1467
- this tells the clients that this modification shouldn't result in a user
1468
- notification.
1494
+ their Dropbox account via notifications in the client software. If
1495
+ ``True``, this tells the clients that this modification shouldn't result
1496
+ in a user notification.
1469
1497
"""
1470
1498
1471
1499
__slots__ = [
@@ -1481,6 +1509,8 @@ class CommitInfo(object):
1481
1509
'_mute_present' ,
1482
1510
]
1483
1511
1512
+ _has_required_fields = True
1513
+
1484
1514
def __init__ (self ,
1485
1515
path = None ,
1486
1516
mode = None ,
@@ -1612,8 +1642,8 @@ def client_modified(self):
1612
1642
def mute (self ):
1613
1643
"""
1614
1644
Normally, users are made aware of any file modifications in their
1615
- Dropbox account via notifications in the client software. If True, this
1616
- tells the clients that this modification shouldn't result in a user
1645
+ Dropbox account via notifications in the client software. If `` True``,
1646
+ this tells the clients that this modification shouldn't result in a user
1617
1647
notification.
1618
1648
1619
1649
:rtype: bool
@@ -1658,6 +1688,8 @@ class UploadSessionFinishArg(object):
1658
1688
'_commit_present' ,
1659
1689
]
1660
1690
1691
+ _has_required_fields = True
1692
+
1661
1693
def __init__ (self ,
1662
1694
cursor = None ,
1663
1695
commit = None ):
@@ -1795,6 +1827,8 @@ class SearchQuery(object):
1795
1827
'_mode_present' ,
1796
1828
]
1797
1829
1830
+ _has_required_fields = True
1831
+
1798
1832
def __init__ (self ,
1799
1833
path = None ,
1800
1834
query = None ,
@@ -2007,6 +2041,8 @@ class SearchMatch(object):
2007
2041
'_metadata_present' ,
2008
2042
]
2009
2043
2044
+ _has_required_fields = True
2045
+
2010
2046
def __init__ (self ,
2011
2047
match_type = None ,
2012
2048
metadata = None ):
@@ -2091,6 +2127,8 @@ class SearchResults(object):
2091
2127
'_start_present' ,
2092
2128
]
2093
2129
2130
+ _has_required_fields = True
2131
+
2094
2132
def __init__ (self ,
2095
2133
matches = None ,
2096
2134
more = None ,
@@ -2431,6 +2469,8 @@ class CreateFolderArg(object):
2431
2469
'_path_present' ,
2432
2470
]
2433
2471
2472
+ _has_required_fields = True
2473
+
2434
2474
def __init__ (self ,
2435
2475
path = None ):
2436
2476
self ._path_value = None
@@ -2511,6 +2551,8 @@ class DeleteArg(object):
2511
2551
'_path_present' ,
2512
2552
]
2513
2553
2554
+ _has_required_fields = True
2555
+
2514
2556
def __init__ (self ,
2515
2557
path = None ):
2516
2558
self ._path_value = None
@@ -2611,6 +2653,8 @@ class RelocationArg(object):
2611
2653
'_to_path_present' ,
2612
2654
]
2613
2655
2656
+ _has_required_fields = True
2657
+
2614
2658
def __init__ (self ,
2615
2659
from_path = None ,
2616
2660
to_path = None ):
@@ -2873,6 +2917,8 @@ class ThumbnailArg(object):
2873
2917
'_size_present' ,
2874
2918
]
2875
2919
2920
+ _has_required_fields = True
2921
+
2876
2922
def __init__ (self ,
2877
2923
path = None ,
2878
2924
format = None ,
@@ -3054,6 +3100,8 @@ class PreviewArg(object):
3054
3100
'_rev_present' ,
3055
3101
]
3056
3102
3103
+ _has_required_fields = True
3104
+
3057
3105
def __init__ (self ,
3058
3106
path = None ,
3059
3107
rev = None ):
@@ -3196,6 +3244,8 @@ class ListRevisionsArg(object):
3196
3244
'_limit_present' ,
3197
3245
]
3198
3246
3247
+ _has_required_fields = True
3248
+
3199
3249
def __init__ (self ,
3200
3250
path = None ,
3201
3251
limit = None ):
@@ -3312,6 +3362,8 @@ class ListRevisionsResult(object):
3312
3362
'_entries_present' ,
3313
3363
]
3314
3364
3365
+ _has_required_fields = True
3366
+
3315
3367
def __init__ (self ,
3316
3368
is_deleted = None ,
3317
3369
entries = None ):
@@ -3391,6 +3443,8 @@ class RestoreArg(object):
3391
3443
'_rev_present' ,
3392
3444
]
3393
3445
3446
+ _has_required_fields = True
3447
+
3394
3448
def __init__ (self ,
3395
3449
path = None ,
3396
3450
rev = None ):
0 commit comments