Package net.troja.eve.esi.model
Class MailHeadersResponse
- java.lang.Object
-
- net.troja.eve.esi.model.MailHeadersResponse
-
- All Implemented Interfaces:
Serializable
public class MailHeadersResponse extends Object implements Serializable
200 ok object- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_FROMstatic StringSERIALIZED_NAME_IS_READstatic StringSERIALIZED_NAME_LABELSstatic StringSERIALIZED_NAME_MAIL_IDstatic StringSERIALIZED_NAME_RECIPIENTSstatic StringSERIALIZED_NAME_SUBJECTstatic StringSERIALIZED_NAME_TIMESTAMP
-
Constructor Summary
Constructors Constructor Description MailHeadersResponse()
-
Method Summary
-
-
-
Field Detail
-
SERIALIZED_NAME_FROM
public static final String SERIALIZED_NAME_FROM
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_IS_READ
public static final String SERIALIZED_NAME_IS_READ
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_LABELS
public static final String SERIALIZED_NAME_LABELS
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_MAIL_ID
public static final String SERIALIZED_NAME_MAIL_ID
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_RECIPIENTS
public static final String SERIALIZED_NAME_RECIPIENTS
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_SUBJECT
public static final String SERIALIZED_NAME_SUBJECT
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_TIMESTAMP
public static final String SERIALIZED_NAME_TIMESTAMP
- See Also:
- Constant Field Values
-
-
Method Detail
-
from
public MailHeadersResponse from(Integer from)
-
setFrom
public void setFrom(Integer from)
-
isRead
public MailHeadersResponse isRead(Boolean isRead)
-
setIsRead
public void setIsRead(Boolean isRead)
-
labels
public MailHeadersResponse labels(List<Integer> labels)
-
addLabelsItem
public MailHeadersResponse addLabelsItem(Integer labelsItem)
-
mailId
public MailHeadersResponse mailId(Integer mailId)
-
setMailId
public void setMailId(Integer mailId)
-
recipients
public MailHeadersResponse recipients(List<Recipient> recipients)
-
addRecipientsItem
public MailHeadersResponse addRecipientsItem(Recipient recipientsItem)
-
getRecipients
@Nullable public List<Recipient> getRecipients()
Recipients of the mail- Returns:
- recipients
-
subject
public MailHeadersResponse subject(String subject)
-
setSubject
public void setSubject(String subject)
-
timestamp
public MailHeadersResponse timestamp(java.time.OffsetDateTime timestamp)
-
getTimestamp
@Nullable public java.time.OffsetDateTime getTimestamp()
When the mail was sent- Returns:
- timestamp
-
setTimestamp
public void setTimestamp(java.time.OffsetDateTime timestamp)
-
-