All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.citrix.sharefile.api.models.SFFavorite 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 SFFavorite extends SFODataObject {

	@SerializedName("User")
	private SFUser User;
	@SerializedName("Item")
	private SFItem Item;
	@SerializedName("DisplayPosition")
	private Integer DisplayPosition;
	@SerializedName("Alias")
	private String Alias;
	@SerializedName("CreationDate")
	private Date CreationDate;

		/**
		* Creator of the Favorite
		*/
	public SFUser getUser() {
		return this.User;
	}

		/**
		* Creator of the Favorite
		*/
	public void setUser(SFUser user) {
		this.User = user;
	}
		/**
		* The item which is marked as Favorite
		*/
	public SFItem getItem() {
		return this.Item;
	}

		/**
		* The item which is marked as Favorite
		*/
	public void setItem(SFItem item) {
		this.Item = item;
	}
		/**
		* The position within the set of Favorite items where this Favorite should be displayed
		*/
	public Integer getDisplayPosition() {
		return this.DisplayPosition;
	}

		/**
		* The position within the set of Favorite items where this Favorite should be displayed
		*/
	public void setDisplayPosition(Integer displayposition) {
		this.DisplayPosition = displayposition;
	}
		/**
		* The alias name of the Favorite
		*/
	public String getAlias() {
		return this.Alias;
	}

		/**
		* The alias name of the Favorite
		*/
	public void setAlias(String alias) {
		this.Alias = alias;
	}
		/**
		* Date when the item was marked favorite
		*/
	public Date getCreationDate() {
		return this.CreationDate;
	}

		/**
		* Date when the item was marked favorite
		*/
	public void setCreationDate(Date creationdate) {
		this.CreationDate = creationdate;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy