|
@@ -18,14 +18,9 @@ data class UpdateFolderData(
|
|
|
@SerializedName("updated_at") val updatedAt: String,
|
|
|
@SerializedName("full_path") val fullPath: String,
|
|
|
@SerializedName("active_status") val activeStatus: String,
|
|
|
- @SerializedName("other_infos") val otherInfos: OtherInfos,
|
|
|
+ @SerializedName("other_infos") val otherInfos: HashMap<String, String?>,
|
|
|
@SerializedName("folder_type") val folderType: String,
|
|
|
@SerializedName("parent_id") val parentId: Int,
|
|
|
@SerializedName("size") val size: Int
|
|
|
- ) {
|
|
|
-
|
|
|
- data class OtherInfos(
|
|
|
- @SerializedName("color") val color: String
|
|
|
- )
|
|
|
- }
|
|
|
+ )
|
|
|
}
|