@@ -5,9 +5,5 @@ data class CreateFolderByNameBody(
val folder_name: String
) {
val parent_id: Int? = null
- val other_infos: OtherInfos? = null
-
- data class OtherInfos(
- val color: String
- )
+ var other_infos: HashMap<String, String>? = null
}
@@ -4,9 +4,5 @@ package com.example.kdan_data_center.datacenter.folder.body
data class CreateFolderByPathBody(
val full_path: String
@@ -16,14 +16,9 @@ data class CreateFolderData(
val updated_at: String,
val full_path: String,
val active_status: String,
- val other_infos: OtherInfos,
+ val other_infos: HashMap<String, String?>,
val folder_type: String,
val parent_id: Int,
val size: Int
- ) {
- }
+ )