Package net.troja.eve.esi.model
Class NewContactNotificationsResponse
- java.lang.Object
-
- net.troja.eve.esi.model.NewContactNotificationsResponse
-
- All Implemented Interfaces:
Serializable
public class NewContactNotificationsResponse extends Object implements Serializable
200 ok object- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_MESSAGEstatic StringSERIALIZED_NAME_NOTIFICATION_IDstatic StringSERIALIZED_NAME_SEND_DATEstatic StringSERIALIZED_NAME_SENDER_CHARACTER_IDstatic StringSERIALIZED_NAME_STANDING_LEVEL
-
Constructor Summary
Constructors Constructor Description NewContactNotificationsResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetMessage()message stringIntegergetNotificationId()notification_id integerjava.time.OffsetDateTimegetSendDate()send_date stringIntegergetSenderCharacterId()sender_character_id integerFloatgetStandingLevel()A number representing the standing level the receiver has been added at by the sender.inthashCode()NewContactNotificationsResponsemessage(String message)NewContactNotificationsResponsenotificationId(Integer notificationId)NewContactNotificationsResponsesendDate(java.time.OffsetDateTime sendDate)NewContactNotificationsResponsesenderCharacterId(Integer senderCharacterId)voidsetMessage(String message)voidsetNotificationId(Integer notificationId)voidsetSendDate(java.time.OffsetDateTime sendDate)voidsetSenderCharacterId(Integer senderCharacterId)voidsetStandingLevel(Float standingLevel)NewContactNotificationsResponsestandingLevel(Float standingLevel)StringtoString()
-
-
-
Field Detail
-
SERIALIZED_NAME_MESSAGE
public static final String SERIALIZED_NAME_MESSAGE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_NOTIFICATION_ID
public static final String SERIALIZED_NAME_NOTIFICATION_ID
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_SEND_DATE
public static final String SERIALIZED_NAME_SEND_DATE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_SENDER_CHARACTER_ID
public static final String SERIALIZED_NAME_SENDER_CHARACTER_ID
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_STANDING_LEVEL
public static final String SERIALIZED_NAME_STANDING_LEVEL
- See Also:
- Constant Field Values
-
-
Method Detail
-
message
public NewContactNotificationsResponse message(String message)
-
getMessage
public String getMessage()
message string- Returns:
- message
-
setMessage
public void setMessage(String message)
-
notificationId
public NewContactNotificationsResponse notificationId(Integer notificationId)
-
getNotificationId
public Integer getNotificationId()
notification_id integer- Returns:
- notificationId
-
setNotificationId
public void setNotificationId(Integer notificationId)
-
sendDate
public NewContactNotificationsResponse sendDate(java.time.OffsetDateTime sendDate)
-
getSendDate
public java.time.OffsetDateTime getSendDate()
send_date string- Returns:
- sendDate
-
setSendDate
public void setSendDate(java.time.OffsetDateTime sendDate)
-
senderCharacterId
public NewContactNotificationsResponse senderCharacterId(Integer senderCharacterId)
-
getSenderCharacterId
public Integer getSenderCharacterId()
sender_character_id integer- Returns:
- senderCharacterId
-
setSenderCharacterId
public void setSenderCharacterId(Integer senderCharacterId)
-
standingLevel
public NewContactNotificationsResponse standingLevel(Float standingLevel)
-
getStandingLevel
public Float getStandingLevel()
A number representing the standing level the receiver has been added at by the sender. The standing levels are as follows: -10 -> Terrible | -5 -> Bad | 0 -> Neutral | 5 -> Good | 10 -> Excellent- Returns:
- standingLevel
-
setStandingLevel
public void setStandingLevel(Float standingLevel)
-
-