@@ -110,6 +110,7 @@ public string Url
110110 /// <summary>
111111 /// The original name of the file.
112112 /// </summary>
113+ [ JsonProperty ( PropertyName = "filename" ) ]
113114 public string FileName { get ; set ; }
114115
115116 /// <summary>
@@ -122,6 +123,55 @@ public string Url
122123 /// </summary>
123124 public Object [ ] Tags { get ; set ; }
124125
126+ /// <summary>
127+ /// This content_type in asset.
128+ /// </summary>
129+ [ JsonProperty ( propertyName : "content_type" ) ]
130+ public string ContentType { get ; set ; }
131+
132+ /// <summary>
133+ /// This for whether it is asset directory
134+ /// </summary>
135+ [ JsonProperty ( propertyName : "is_dir" ) ]
136+ public Boolean IsDir { get ; set ; }
137+
138+ /// <summary>
139+ /// Uid of user who updated the file
140+ /// </summary>
141+ [ JsonProperty ( PropertyName = "updated_by" ) ]
142+ public string UpdatedBy { get ; set ; }
143+
144+ /// <summary>
145+ /// Uid of user who updated the file
146+ /// </summary>
147+ [ JsonProperty ( PropertyName = "created_by" ) ]
148+ public string CreatedBy { get ; set ; }
149+
150+
151+ /// <summary>
152+ /// The Uid of folder in which the asset is present
153+ /// </summary>
154+ [ JsonProperty ( PropertyName = "parent_uid" ) ]
155+ public string ParentUid { get ; set ; }
156+
157+ /// <summary>
158+ /// The Version of Asset
159+ /// </summary>
160+ [ JsonProperty ( PropertyName = "_version" ) ]
161+ public string Version { get ; set ; }
162+
163+ /// <summary>
164+ /// Dimension Object of the asset containing Height and width
165+ /// </summary>
166+ [ JsonProperty ( PropertyName = "dimension" ) ]
167+ public Dictionary < string , object > Dimension { get ; set ; }
168+
169+ /// <summary>
170+ /// Dimension Object of the asset containing Height and width
171+ /// </summary>
172+ [ JsonProperty ( PropertyName = "publish_details" ) ]
173+ public Dictionary < string , object > PublishDetails { get ; set ; }
174+
125175 #region Internal Constructors
126176 internal Asset ( ContentstackClient stack , string uid )
127177 {
0 commit comments