Package com.twilio.rest.bulkexports.v1
Class ExportConfiguration
- java.lang.Object
-
- com.twilio.base.Resource
-
- com.twilio.rest.bulkexports.v1.ExportConfiguration
-
- All Implemented Interfaces:
Serializable
public class ExportConfiguration extends Resource
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
static ExportConfigurationFetcher
fetcher(String pathResourceType)
static ExportConfiguration
fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a ExportConfiguration object using the provided ObjectMapper.static ExportConfiguration
fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a ExportConfiguration object using the provided ObjectMapper.Boolean
getEnabled()
String
getResourceType()
URI
getUrl()
String
getWebhookMethod()
URI
getWebhookUrl()
int
hashCode()
static ExportConfigurationUpdater
updater(String pathResourceType)
-
-
-
Method Detail
-
fetcher
public static ExportConfigurationFetcher fetcher(String pathResourceType)
-
updater
public static ExportConfigurationUpdater updater(String pathResourceType)
-
fromJson
public static ExportConfiguration fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a ExportConfiguration object using the provided ObjectMapper.- Parameters:
json
- Raw JSON StringobjectMapper
- Jackson ObjectMapper- Returns:
- ExportConfiguration object represented by the provided JSON
-
fromJson
public static ExportConfiguration fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a ExportConfiguration object using the provided ObjectMapper.- Parameters:
json
- Raw JSON InputStreamobjectMapper
- Jackson ObjectMapper- Returns:
- ExportConfiguration object represented by the provided JSON
-
getEnabled
public final Boolean getEnabled()
-
getWebhookUrl
public final URI getWebhookUrl()
-
getWebhookMethod
public final String getWebhookMethod()
-
getResourceType
public final String getResourceType()
-
getUrl
public final URI getUrl()
-
-