com.citrix.sharefile.api.models.SFBandwidth 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 SFBandwidth extends SFODataObject {
@SerializedName("Max")
private Integer Max;
@SerializedName("Used")
private Integer Used;
@SerializedName("Free")
private Integer Free;
/**
* Max bandwidth allowed
*/
public Integer getMax() {
return this.Max;
}
/**
* Max bandwidth allowed
*/
public void setMax(Integer max) {
this.Max = max;
}
/**
* Current bandwidth used
*/
public Integer getUsed() {
return this.Used;
}
/**
* Current bandwidth used
*/
public void setUsed(Integer used) {
this.Used = used;
}
/**
* Current bandwidth free
* Not returned when unlimited bandwidth
*/
public Integer getFree() {
return this.Free;
}
/**
* Current bandwidth free
* Not returned when unlimited bandwidth
*/
public void setFree(Integer free) {
this.Free = free;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy