Skip to content

Commit 294743a

Browse files
committed
Clean up ExtractedProfile object
1 parent f5b2665 commit 294743a

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

pir/pir-internal/src/main/java/com/duckduckgo/pir/internal/scripts/models/PirScriptProfile.kt

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,18 +45,17 @@ data class Address(
4545
data class ExtractedProfile(
4646
val id: Int? = null,
4747
val name: String? = null,
48-
val alternativeNamesList: List<String>? = emptyList(),
49-
val addressFull: List<AddressCityState>? = emptyList(),
50-
val addressCityState: List<AddressCityState>? = emptyList(),
51-
val phoneNumbers: List<String>? = null,
52-
val relativesList: List<String>? = null,
48+
val alternativeNames: List<String>? = emptyList(),
49+
val age: String? = null,
50+
val addresses: List<AddressCityState>? = emptyList(),
51+
val phoneNumbers: List<String>? = emptyList(),
52+
val relatives: List<String>? = emptyList(),
5353
val profileUrl: String? = null,
54+
val identifier: String? = null,
5455
val reportId: String? = null,
55-
val age: String? = null,
5656
val email: String? = null,
5757
val removedDate: String? = null,
5858
val fullName: String? = null,
59-
val identifier: String? = null,
6059
)
6160

6261
data class AddressCityState(

0 commit comments

Comments
 (0)