We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5b2665 commit 294743aCopy full SHA for 294743a
pir/pir-internal/src/main/java/com/duckduckgo/pir/internal/scripts/models/PirScriptProfile.kt
@@ -45,18 +45,17 @@ data class Address(
45
data class ExtractedProfile(
46
val id: Int? = null,
47
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,
+ val alternativeNames: List<String>? = emptyList(),
+ val age: String? = null,
+ val addresses: List<AddressCityState>? = emptyList(),
+ val phoneNumbers: List<String>? = emptyList(),
+ val relatives: List<String>? = emptyList(),
53
val profileUrl: String? = null,
54
+ val identifier: String? = null,
55
val reportId: String? = null,
- val age: String? = null,
56
val email: String? = null,
57
val removedDate: String? = null,
58
val fullName: String? = null,
59
- val identifier: String? = null,
60
)
61
62
data class AddressCityState(
0 commit comments