Class SendEmailBulkJson
- java.lang.Object
-
- com.blackberry.workspaces.sdk.api.json.BaseJson
-
- com.blackberry.workspaces.sdk.api.json.SendEmailBulkJson
-
- All Implemented Interfaces:
Serializable
public class SendEmailBulkJson extends BaseJson
Used when sending bulk email notifications for a list of files to all permitted entities (users, groups etc) for each file- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SendEmailBulkJson()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<String>
getGuids()
List of guidsString
getNote()
Email textString
getOnBehalfOf()
Sending the mail on behalf ofBoolean
getReadConfirmation()
if to specify read confirmation in the emailString
getSubject()
Subject line for emailboolean
isImmediate()
Immediatevoid
setGuids(Set<String> guids)
List of guidsvoid
setImmediate(boolean immediate)
Immediatevoid
setNote(String note)
Email textvoid
setOnBehalfOf(String onBehalfOf)
Sending the mail on behalf ofvoid
setReadConfirmation(Boolean readConfirmation)
if to specify read confirmation in the emailvoid
setSubject(String subject)
Subject line for email-
Methods inherited from class com.blackberry.workspaces.sdk.api.json.BaseJson
getObjType, setObjType, toString
-
-
-
-
Method Detail
-
getNote
public String getNote()
Email text- Returns:
- Email text
-
setNote
public void setNote(String note)
Email text- Parameters:
note
- Email text
-
isImmediate
public boolean isImmediate()
Immediate- Returns:
- Immediate
-
setImmediate
public void setImmediate(boolean immediate)
Immediate- Parameters:
immediate
- Immediate
-
getSubject
public String getSubject()
Subject line for email- Returns:
- Subject line for email
-
setSubject
public void setSubject(String subject)
Subject line for email- Parameters:
subject
- Subject line for email
-
getOnBehalfOf
public String getOnBehalfOf()
Sending the mail on behalf of- Returns:
- Sending the mail on behalf of
-
setOnBehalfOf
public void setOnBehalfOf(String onBehalfOf)
Sending the mail on behalf of- Parameters:
onBehalfOf
- Sending the mail on behalf of
-
getReadConfirmation
public Boolean getReadConfirmation()
if to specify read confirmation in the email- Returns:
- if to specify read confirmation in the email
-
setReadConfirmation
public void setReadConfirmation(Boolean readConfirmation)
if to specify read confirmation in the email- Parameters:
readConfirmation
- if to specify read confirmation in the email
-
-