You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Includes information about conflicts in document. Default is false
14
+
/// Includes attachments bodies in response. Default is <c>False</c>
15
15
/// </summary>
16
-
publicboolConflicts{get;set;}=false;
16
+
publicboolAttachments{get;set;}
17
+
18
+
/// <summary>
19
+
/// Includes encoding information in attachment stubs if the particular attachment is compressed. Default is <c>False</c>
20
+
/// </summary>
21
+
publicboolAttachmentsEncodingInfo{get;set;}
22
+
23
+
/// <summary>
24
+
/// Includes attachments only since specified revisions. Doesn’t includes attachments for specified revisions. Optional
25
+
/// </summary>
26
+
publicIList<string>?AttachmentsSince{get;set;}
27
+
28
+
/// <summary>
29
+
/// Includes information about conflicts in document. Default is <c>False</c>
30
+
/// </summary>
31
+
publicboolConflicts{get;set;}
17
32
33
+
/// <summary>
34
+
/// Includes information about deleted conflicted revisions. Default is <c>False</c>
35
+
/// </summary>
36
+
publicboolDeleteConflicts{get;set;}
37
+
38
+
/// <summary>
39
+
/// Forces retrieving latest “leaf” revision, no matter what rev was requested. Default is <c>False</c>
40
+
/// </summary>
41
+
publicboolLatest{get;set;}
42
+
43
+
/// <summary>
44
+
/// Includes last update sequence for the document. Default is <<c>False</c>
45
+
/// </summary>
46
+
publicboolLocalSequence{get;set;}
47
+
48
+
/// <summary>
49
+
/// Acts same as specifying all <see cref="Conflicts"/>, <see cref="DeleteConflicts"/> and <see cref="RevisionsInfo"/> query parameters. Default is <c>False</c>
50
+
/// </summary>
51
+
publicboolMeta{get;set;}
52
+
53
+
/// <summary>
54
+
/// Retrieves documents of specified leaf revisions. Additionally, it accepts value as all to return all leaf revisions. Optional
55
+
/// </summary>
56
+
publicIList<string>?OpenRevisions{get;set;}
57
+
18
58
/// <summary>
19
59
/// Retrieves document of specified revision. Optional
20
60
/// </summary>
21
-
publicstring?Rev{get;set;}
61
+
publicstring?Revision{get;set;}
62
+
63
+
/// <summary>
64
+
/// Includes list of all known document revisions. Default is <c>False</c>
65
+
/// </summary>
66
+
publicboolRevisions{get;set;}
67
+
68
+
/// <summary>
69
+
/// Includes detailed information for all known document revisions. Default is <c>False</c>
0 commit comments