-
public final class EmailProjectionA compact representation of a full email. Used in list endpoints to keep response sizes low. Body and attachments are not included. To get all fields of the email use the
getEmailmethod with the email projection's ID. SeeEmailDtofor documentation on projection properties.
-
-
Field Summary
Fields Modifier and Type Field Description private final UUIDidprivate final UUIDinboxIdprivate final OffsetDateTimecreatedAtprivate final List<String>toprivate final Stringfromprivate final Stringsubjectprivate final List<String>attachmentsprivate final List<String>bccprivate final List<String>ccprivate final BooleanteamAccessprivate final Booleanreadprivate final StringbodyMD5Hashprivate final StringbodyExcerpt
-
Method Summary
Modifier and Type Method Description final UUIDgetId()final UUIDgetInboxId()final OffsetDateTimegetCreatedAt()final List<String>getTo()final StringgetFrom()final StringgetSubject()final List<String>getAttachments()final List<String>getBcc()final List<String>getCc()final BooleangetTeamAccess()final BooleangetRead()final StringgetBodyMD5Hash()final StringgetBodyExcerpt()-
-
Method Detail
-
getInboxId
final UUID getInboxId()
-
getCreatedAt
final OffsetDateTime getCreatedAt()
-
getSubject
final String getSubject()
-
getAttachments
final List<String> getAttachments()
-
getTeamAccess
final Boolean getTeamAccess()
-
getBodyMD5Hash
final String getBodyMD5Hash()
-
getBodyExcerpt
final String getBodyExcerpt()
-
-
-
-