com.citrix.sharefile.api.models.SFConnectedApp Maven / Gradle / Ivy
// ------------------------------------------------------------------------------
//
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
// Copyright (c) 2017 Citrix ShareFile. All rights reserved.
//
// ------------------------------------------------------------------------------
package com.citrix.sharefile.api.models;
import java.io.InputStream;
import java.util.ArrayList;
import java.net.URI;
import java.util.Date;
import java.util.Map;
import java.util.HashMap;
import com.google.gson.annotations.SerializedName;
import com.citrix.sharefile.api.*;
import com.citrix.sharefile.api.enumerations.*;
import com.citrix.sharefile.api.models.*;
public class SFConnectedApp extends SFODataObject {
@SerializedName("Name")
private String Name;
@SerializedName("AppCode")
private SFSafeEnum AppCode;
@SerializedName("LastLoginDate")
private Date LastLoginDate;
@SerializedName("UserId")
private String UserId;
@SerializedName("Active")
private Boolean Active;
@SerializedName("Devices")
private ArrayList Devices;
/**
* Name of the application
*/
public String getName() {
return this.Name;
}
/**
* Name of the application
*/
public void setName(String name) {
this.Name = name;
}
/**
* Used to determine which official ShareFile App this is, if any
*/
public SFSafeEnum getAppCode() {
return this.AppCode;
}
/**
* Used to determine which official ShareFile App this is, if any
*/
public void setAppCode(SFSafeEnum appcode) {
this.AppCode = appcode;
}
/**
* The last time this client was used to login to the account
*/
public Date getLastLoginDate() {
return this.LastLoginDate;
}
/**
* The last time this client was used to login to the account
*/
public void setLastLoginDate(Date lastlogindate) {
this.LastLoginDate = lastlogindate;
}
/**
* The user this app mapping is for
*/
public String getUserId() {
return this.UserId;
}
/**
* The user this app mapping is for
*/
public void setUserId(String userid) {
this.UserId = userid;
}
/**
* Whether or not this App can still be used
*/
public Boolean getActive() {
return this.Active;
}
/**
* Whether or not this App can still be used
*/
public void setActive(Boolean active) {
this.Active = active;
}
/**
* Devices associated with this App
*/
public ArrayList getDevices() {
return this.Devices;
}
/**
* Devices associated with this App
*/
public void setDevices(ArrayList devices) {
this.Devices = devices;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy