com.citrix.sharefile.api.models.SFShareResendParams 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 SFShareResendParams extends SFODataObject {
@SerializedName("ShareId")
private String ShareId;
@SerializedName("Recipients")
private ArrayList Recipients;
@SerializedName("Subject")
private String Subject;
@SerializedName("Body")
private String Body;
@SerializedName("CcSender")
private Boolean CcSender;
@SerializedName("NotifyOnUse")
private Boolean NotifyOnUse;
/**
* The ID of the existing share
*/
public String getShareId() {
return this.ShareId;
}
/**
* The ID of the existing share
*/
public void setShareId(String shareid) {
this.ShareId = shareid;
}
/**
* These can be email addresses or group IDs
*/
public ArrayList getRecipients() {
return this.Recipients;
}
/**
* These can be email addresses or group IDs
*/
public void setRecipients(ArrayList recipients) {
this.Recipients = recipients;
}
public String getSubject() {
return this.Subject;
}
public void setSubject(String subject) {
this.Subject = subject;
}
/**
* Message included in the share notification
*/
public String getBody() {
return this.Body;
}
/**
* Message included in the share notification
*/
public void setBody(String body) {
this.Body = body;
}
/**
* Send a copy of the notification to the cender
*/
public Boolean getCcSender() {
return this.CcSender;
}
/**
* Send a copy of the notification to the cender
*/
public void setCcSender(Boolean ccsender) {
this.CcSender = ccsender;
}
public Boolean getNotifyOnUse() {
return this.NotifyOnUse;
}
public void setNotifyOnUse(Boolean notifyonuse) {
this.NotifyOnUse = notifyonuse;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy