com.citrix.sharefile.api.models.SFActiveDirectoryUser 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 SFActiveDirectoryUser extends SFODataObject {
@SerializedName("Contact")
private SFContact Contact;
@SerializedName("ADGuid")
private String ADGuid;
@SerializedName("IsMasterAdmin")
private Boolean IsMasterAdmin;
@SerializedName("IsDisabled")
private Boolean IsDisabled;
@SerializedName("Emails")
private ArrayList Emails;
@SerializedName("Policies")
private ArrayList Policies;
@SerializedName("StorageQuotaLimitGB")
private Integer StorageQuotaLimitGB;
@SerializedName("StorageQuotaPercent")
private Integer StorageQuotaPercent;
@SerializedName("EnableHardLimit")
private Boolean EnableHardLimit;
public SFContact getContact() {
return this.Contact;
}
public void setContact(SFContact contact) {
this.Contact = contact;
}
public String getADGuid() {
return this.ADGuid;
}
public void setADGuid(String adguid) {
this.ADGuid = adguid;
}
public Boolean getIsMasterAdmin() {
return this.IsMasterAdmin;
}
public void setIsMasterAdmin(Boolean ismasteradmin) {
this.IsMasterAdmin = ismasteradmin;
}
public Boolean getIsDisabled() {
return this.IsDisabled;
}
public void setIsDisabled(Boolean isdisabled) {
this.IsDisabled = isdisabled;
}
public ArrayList getEmails() {
return this.Emails;
}
public void setEmails(ArrayList emails) {
this.Emails = emails;
}
public ArrayList getPolicies() {
return this.Policies;
}
public void setPolicies(ArrayList policies) {
this.Policies = policies;
}
public Integer getStorageQuotaLimitGB() {
return this.StorageQuotaLimitGB;
}
public void setStorageQuotaLimitGB(Integer storagequotalimitgb) {
this.StorageQuotaLimitGB = storagequotalimitgb;
}
public Integer getStorageQuotaPercent() {
return this.StorageQuotaPercent;
}
public void setStorageQuotaPercent(Integer storagequotapercent) {
this.StorageQuotaPercent = storagequotapercent;
}
public Boolean getEnableHardLimit() {
return this.EnableHardLimit;
}
public void setEnableHardLimit(Boolean enablehardlimit) {
this.EnableHardLimit = enablehardlimit;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy