Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
Elixxir dApps SDK Kotlin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile
android
Elixxir dApps SDK Kotlin
Commits
e10b6cbf
Commit
e10b6cbf
authored
Nov 16, 2022
by
Kamal Bramwell
Browse files
Options
Downloads
Patches
Plain Diff
Renamed contact property -> contactModel for clarity
parent
1a8d1e2d
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
xxclient/src/main/java/io/elixxir/xxclient/userdiscovery/UserDiscovery.kt
+2
-2
2 additions, 2 deletions
...n/java/io/elixxir/xxclient/userdiscovery/UserDiscovery.kt
with
2 additions
and
2 deletions
xxclient/src/main/java/io/elixxir/xxclient/userdiscovery/UserDiscovery.kt
+
2
−
2
View file @
e10b6cbf
...
@@ -11,7 +11,7 @@ import bindings.UserDiscovery as UdBindings
...
@@ -11,7 +11,7 @@ import bindings.UserDiscovery as UdBindings
interface
UserDiscovery
{
interface
UserDiscovery
{
val
id
:
Long
val
id
:
Long
val
contact
:
Contact
val
contact
Model
:
Contact
val
facts
:
List
<
Fact
>
val
facts
:
List
<
Fact
>
fun
sendRegisterFact
(
fact
:
Fact
):
ConfirmationId
fun
sendRegisterFact
(
fact
:
Fact
):
ConfirmationId
...
@@ -23,7 +23,7 @@ interface UserDiscovery {
...
@@ -23,7 +23,7 @@ interface UserDiscovery {
open
class
UserDiscoveryAdapter
(
protected
val
ud
:
UdBindings
)
:
UserDiscovery
{
open
class
UserDiscoveryAdapter
(
protected
val
ud
:
UdBindings
)
:
UserDiscovery
{
override
val
id
:
Long
override
val
id
:
Long
get
()
=
ud
.
id
get
()
=
ud
.
id
override
val
contact
:
Contact
override
val
contact
Model
:
Contact
get
()
=
ContactAdapter
(
ud
.
contact
)
get
()
=
ContactAdapter
(
ud
.
contact
)
override
val
facts
:
List
<
Fact
>
override
val
facts
:
List
<
Fact
>
get
()
=
decodeArray
(
ud
.
facts
)
get
()
=
decodeArray
(
ud
.
facts
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment