Package com.moesif.api.models
Class EventResponseModel
- java.lang.Object
-
- com.moesif.api.models.EventResponseModel
-
- All Implemented Interfaces:
Serializable
public class EventResponseModel extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EventResponseModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetBody()GETTER Response bodyMap<String,String>getHeaders()GETTER Key/Value map of response headersStringgetIpAddress()GETTER IP Address from the response, such as the server IP AddressintgetStatus()GETTER HTTP Status code such as 200DategetTime()GETTER Time when response receivedStringgetTransferEncoding()GETTER Transfer Encoding of the body such as "base64", null value implies "json" transfer encodingvoidsetBody(Object value)SETTER Response bodyvoidsetHeaders(Map<String,String> value)SETTER Key/Value map of response headersvoidsetIpAddress(String value)SETTER IP Address from the response, such as the server IP AddressvoidsetStatus(int value)SETTER HTTP Status code such as 200voidsetTime(Date value)SETTER Time when response receivedvoidsetTransferEncoding(String value)SETTER Transfer Encoding of the body such as "base64", null value implies "json" transfer encoding
-
-
-
Method Detail
-
getTime
public Date getTime()
GETTER Time when response received- Returns:
- the value
-
setTime
public void setTime(Date value)
SETTER Time when response received- Parameters:
value- the value to set
-
getStatus
public int getStatus()
GETTER HTTP Status code such as 200- Returns:
- the value
-
setStatus
public void setStatus(int value)
SETTER HTTP Status code such as 200- Parameters:
value- the value to set
-
getHeaders
public Map<String,String> getHeaders()
GETTER Key/Value map of response headers- Returns:
- the value
-
setHeaders
public void setHeaders(Map<String,String> value)
SETTER Key/Value map of response headers- Parameters:
value- the value to set
-
getBody
public Object getBody()
GETTER Response body- Returns:
- the value
-
setBody
public void setBody(Object value)
SETTER Response body- Parameters:
value- the value to set
-
getTransferEncoding
public String getTransferEncoding()
GETTER Transfer Encoding of the body such as "base64", null value implies "json" transfer encoding- Returns:
- the value
-
setTransferEncoding
public void setTransferEncoding(String value)
SETTER Transfer Encoding of the body such as "base64", null value implies "json" transfer encoding- Parameters:
value- the value to set
-
getIpAddress
public String getIpAddress()
GETTER IP Address from the response, such as the server IP Address- Returns:
- the value
-
setIpAddress
public void setIpAddress(String value)
SETTER IP Address from the response, such as the server IP Address- Parameters:
value- the value to set
-
-