Class MessagingConfiguration
- java.lang.Object
-
- com.twilio.base.Resource
-
- com.twilio.rest.verify.v2.service.MessagingConfiguration
-
- All Implemented Interfaces:
Serializable
public class MessagingConfiguration extends Resource
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MessagingConfigurationCreator
creator(String pathServiceSid, String country, String messagingServiceSid)
static MessagingConfigurationDeleter
deleter(String pathServiceSid, String pathCountry)
boolean
equals(Object o)
static MessagingConfigurationFetcher
fetcher(String pathServiceSid, String pathCountry)
static MessagingConfiguration
fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a MessagingConfiguration object using the provided ObjectMapper.static MessagingConfiguration
fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a MessagingConfiguration object using the provided ObjectMapper.String
getAccountSid()
String
getCountry()
ZonedDateTime
getDateCreated()
ZonedDateTime
getDateUpdated()
String
getMessagingServiceSid()
String
getServiceSid()
URI
getUrl()
int
hashCode()
static MessagingConfigurationReader
reader(String pathServiceSid)
static MessagingConfigurationUpdater
updater(String pathServiceSid, String pathCountry, String messagingServiceSid)
-
-
-
Method Detail
-
creator
public static MessagingConfigurationCreator creator(String pathServiceSid, String country, String messagingServiceSid)
-
deleter
public static MessagingConfigurationDeleter deleter(String pathServiceSid, String pathCountry)
-
fetcher
public static MessagingConfigurationFetcher fetcher(String pathServiceSid, String pathCountry)
-
reader
public static MessagingConfigurationReader reader(String pathServiceSid)
-
updater
public static MessagingConfigurationUpdater updater(String pathServiceSid, String pathCountry, String messagingServiceSid)
-
fromJson
public static MessagingConfiguration fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a MessagingConfiguration object using the provided ObjectMapper.- Parameters:
json
- Raw JSON StringobjectMapper
- Jackson ObjectMapper- Returns:
- MessagingConfiguration object represented by the provided JSON
-
fromJson
public static MessagingConfiguration fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a MessagingConfiguration object using the provided ObjectMapper.- Parameters:
json
- Raw JSON InputStreamobjectMapper
- Jackson ObjectMapper- Returns:
- MessagingConfiguration object represented by the provided JSON
-
getAccountSid
public final String getAccountSid()
-
getServiceSid
public final String getServiceSid()
-
getCountry
public final String getCountry()
-
getMessagingServiceSid
public final String getMessagingServiceSid()
-
getDateCreated
public final ZonedDateTime getDateCreated()
-
getDateUpdated
public final ZonedDateTime getDateUpdated()
-
getUrl
public final URI getUrl()
-
-