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

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

	@SerializedName("User")
	private SFUser User;
	@SerializedName("Share")
	private SFShare Share;
	@SerializedName("Email")
	private String Email;
	@SerializedName("Downloads")
	private Integer Downloads;
	@SerializedName("IsConsumed")
	private Boolean IsConsumed;
	@SerializedName("IsArchived")
	private Boolean IsArchived;
	@SerializedName("IsRead")
	private Boolean IsRead;
	@SerializedName("Uri")
	private URI Uri;

		/**
		* User to whom the share is associated.
		*/
	public SFUser getUser() {
		return this.User;
	}

		/**
		* User to whom the share is associated.
		*/
	public void setUser(SFUser user) {
		this.User = user;
	}
		/**
		* Share
		*/
	public SFShare getShare() {
		return this.Share;
	}

		/**
		* Share
		*/
	public void setShare(SFShare share) {
		this.Share = share;
	}
		/**
		* Email
		*/
	public String getEmail() {
		return this.Email;
	}

		/**
		* Email
		*/
	public void setEmail(String email) {
		this.Email = email;
	}
		/**
		* Number of downloads
		*/
	public Integer getDownloads() {
		return this.Downloads;
	}

		/**
		* Number of downloads
		*/
	public void setDownloads(Integer downloads) {
		this.Downloads = downloads;
	}
		/**
		* IsConsumed
		*/
	public Boolean getIsConsumed() {
		return this.IsConsumed;
	}

		/**
		* IsConsumed
		*/
	public void setIsConsumed(Boolean isconsumed) {
		this.IsConsumed = isconsumed;
	}
		/**
		* IsArchived
		*/
	public Boolean getIsArchived() {
		return this.IsArchived;
	}

		/**
		* IsArchived
		*/
	public void setIsArchived(Boolean isarchived) {
		this.IsArchived = isarchived;
	}
		/**
		* IsRead
		*/
	public Boolean getIsRead() {
		return this.IsRead;
	}

		/**
		* IsRead
		*/
	public void setIsRead(Boolean isread) {
		this.IsRead = isread;
	}
		/**
		* Uri to access the share through the Web portal
		*/
	public URI getUri() {
		return this.Uri;
	}

		/**
		* Uri to access the share through the Web portal
		*/
	public void setUri(URI uri) {
		this.Uri = uri;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy