-
public final class OrganizationInboxProjection
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public enumOrganizationInboxProjection.InboxTypeType of inbox. HTTP inboxes are faster and better for most cases. SMTP inboxes are more suited for public facing inbound messages (but cannot send). Values: hTTPINBOX,sMTPINBOX
-
Field Summary
Fields Modifier and Type Field Description private final UUIDidprivate final OffsetDateTimecreatedAtprivate final Booleanfavouriteprivate final BooleanteamAccessprivate final BooleanreadOnlyprivate final Stringnameprivate final StringemailAddressprivate final List<String>tagsprivate final OrganizationInboxProjection.InboxTypeinboxType
-
Constructor Summary
Constructors Constructor Description OrganizationInboxProjection(UUID id, OffsetDateTime createdAt, Boolean favourite, Boolean teamAccess, Boolean readOnly, String name, String emailAddress, List<String> tags, OrganizationInboxProjection.InboxType inboxType)
-
Method Summary
Modifier and Type Method Description final UUIDgetId()final OffsetDateTimegetCreatedAt()final BooleangetFavourite()final BooleangetTeamAccess()final BooleangetReadOnly()final StringgetName()final StringgetEmailAddress()final List<String>getTags()final OrganizationInboxProjection.InboxTypegetInboxType()-
-
Constructor Detail
-
OrganizationInboxProjection
OrganizationInboxProjection(UUID id, OffsetDateTime createdAt, Boolean favourite, Boolean teamAccess, Boolean readOnly, String name, String emailAddress, List<String> tags, OrganizationInboxProjection.InboxType inboxType)
- Parameters:
id- ID of the inbox.createdAt- When the inbox was created.favourite- Is the inbox a favorite inbox.teamAccess- Does inbox permit team access for organization team members.readOnly- Is the inbox readOnly for the caller.name- Name of the inbox and used as the sender name when sending emails .emailAddress- The inbox's email address.tags- Tags that inbox has been tagged with.inboxType- Type of inbox.
-
-
Method Detail
-
getCreatedAt
final OffsetDateTime getCreatedAt()
-
getFavourite
final Boolean getFavourite()
-
getTeamAccess
final Boolean getTeamAccess()
-
getReadOnly
final Boolean getReadOnly()
-
getEmailAddress
final String getEmailAddress()
-
getInboxType
final OrganizationInboxProjection.InboxType getInboxType()
-
-
-
-