Welcome to mirror list, hosted at ThFree Co, Russian Federation.

OcsUser.java « model « shared « notes « owncloud « niedermann « it « java « main « src « app - github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9248abdfda81adabe6e4cb577bbd54dc9b87a26c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package it.niedermann.owncloud.notes.shared.model;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

/**
 * Equivalent of an <code><a href="https://docs.nextcloud.com/server/latest/developer_manual/client_apis/OCS/ocs-api-overview.html?highlight=ocs#user-metadata">OcsUser</a></code>
 */
public class OcsUser {
    @Expose
    @SerializedName("id")
    public String userId;
    @Expose
    @SerializedName("displayname")
    public String displayName;
}