@@ -13,7 +13,7 @@ namespace Dropbox.Api.Files
1313 /// <summary>
1414 /// <para>The commit info with properties object</para>
1515 /// </summary>
16- /// <seealso cref="Dropbox.Api.Files.CommitInfo" />
16+ /// <seealso cref="Global:: Dropbox.Api.Files.CommitInfo" />
1717 public class CommitInfoWithProperties : CommitInfo
1818 {
1919 #pragma warning disable 108
@@ -52,7 +52,7 @@ public CommitInfoWithProperties(string path,
5252 bool autorename = false ,
5353 sys . DateTime ? clientModified = null ,
5454 bool mute = false ,
55- col . IEnumerable < Dropbox . Api . Properties . PropertyGroup > propertyGroups = null )
55+ col . IEnumerable < global :: Dropbox . Api . Properties . PropertyGroup > propertyGroups = null )
5656 : base ( path , mode , autorename , clientModified , mute )
5757 {
5858 var propertyGroupsList = enc . Util . ToList ( propertyGroups ) ;
@@ -74,7 +74,7 @@ public CommitInfoWithProperties()
7474 /// <summary>
7575 /// <para>List of custom properties to add to file.</para>
7676 /// </summary>
77- public col . IList < Dropbox . Api . Properties . PropertyGroup > PropertyGroups { get ; protected set ; }
77+ public col . IList < global :: Dropbox . Api . Properties . PropertyGroup > PropertyGroups { get ; protected set ; }
7878
7979 #region Encoder class
8080
@@ -91,7 +91,7 @@ private class CommitInfoWithPropertiesEncoder : enc.StructEncoder<CommitInfoWith
9191 public override void EncodeFields ( CommitInfoWithProperties value , enc . IJsonWriter writer )
9292 {
9393 WriteProperty ( "path" , value . Path , writer , enc . StringEncoder . Instance ) ;
94- WriteProperty ( "mode" , value . Mode , writer , Dropbox . Api . Files . WriteMode . Encoder ) ;
94+ WriteProperty ( "mode" , value . Mode , writer , global :: Dropbox . Api . Files . WriteMode . Encoder ) ;
9595 WriteProperty ( "autorename" , value . Autorename , writer , enc . BooleanEncoder . Instance ) ;
9696 if ( value . ClientModified != null )
9797 {
@@ -100,7 +100,7 @@ public override void EncodeFields(CommitInfoWithProperties value, enc.IJsonWrite
100100 WriteProperty ( "mute" , value . Mute , writer , enc . BooleanEncoder . Instance ) ;
101101 if ( value . PropertyGroups . Count > 0 )
102102 {
103- WriteListProperty ( "property_groups" , value . PropertyGroups , writer , Dropbox . Api . Properties . PropertyGroup . Encoder ) ;
103+ WriteListProperty ( "property_groups" , value . PropertyGroups , writer , global :: Dropbox . Api . Properties . PropertyGroup . Encoder ) ;
104104 }
105105 }
106106 }
@@ -139,7 +139,7 @@ protected override void SetField(CommitInfoWithProperties value, string fieldNam
139139 value . Path = enc . StringDecoder . Instance . Decode ( reader ) ;
140140 break ;
141141 case "mode" :
142- value . Mode = Dropbox . Api . Files . WriteMode . Decoder . Decode ( reader ) ;
142+ value . Mode = global :: Dropbox . Api . Files . WriteMode . Decoder . Decode ( reader ) ;
143143 break ;
144144 case "autorename" :
145145 value . Autorename = enc . BooleanDecoder . Instance . Decode ( reader ) ;
@@ -151,7 +151,7 @@ protected override void SetField(CommitInfoWithProperties value, string fieldNam
151151 value . Mute = enc . BooleanDecoder . Instance . Decode ( reader ) ;
152152 break ;
153153 case "property_groups" :
154- value . PropertyGroups = ReadList < Dropbox . Api . Properties . PropertyGroup > ( reader , Dropbox . Api . Properties . PropertyGroup . Decoder ) ;
154+ value . PropertyGroups = ReadList < global :: Dropbox . Api . Properties . PropertyGroup > ( reader , global :: Dropbox . Api . Properties . PropertyGroup . Decoder ) ;
155155 break ;
156156 default :
157157 reader . Skip ( ) ;
0 commit comments