Package com.twilio.rest.flexapi.v1
Class PluginArchive
- java.lang.Object
-
- com.twilio.base.Resource
-
- com.twilio.rest.flexapi.v1.PluginArchive
-
- All Implemented Interfaces:
Serializable
public class PluginArchive 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 PluginArchive
fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a PluginArchive object using the provided ObjectMapper.static PluginArchive
fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a PluginArchive object using the provided ObjectMapper.String
getAccountSid()
Boolean
getArchived()
ZonedDateTime
getDateCreated()
ZonedDateTime
getDateUpdated()
String
getDescription()
String
getFriendlyName()
String
getSid()
String
getUniqueName()
URI
getUrl()
int
hashCode()
static PluginArchiveUpdater
updater(String pathSid)
-
-
-
Method Detail
-
updater
public static PluginArchiveUpdater updater(String pathSid)
-
fromJson
public static PluginArchive fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a PluginArchive object using the provided ObjectMapper.- Parameters:
json
- Raw JSON StringobjectMapper
- Jackson ObjectMapper- Returns:
- PluginArchive object represented by the provided JSON
-
fromJson
public static PluginArchive fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a PluginArchive object using the provided ObjectMapper.- Parameters:
json
- Raw JSON InputStreamobjectMapper
- Jackson ObjectMapper- Returns:
- PluginArchive object represented by the provided JSON
-
getSid
public final String getSid()
-
getAccountSid
public final String getAccountSid()
-
getUniqueName
public final String getUniqueName()
-
getFriendlyName
public final String getFriendlyName()
-
getDescription
public final String getDescription()
-
getArchived
public final Boolean getArchived()
-
getDateCreated
public final ZonedDateTime getDateCreated()
-
getDateUpdated
public final ZonedDateTime getDateUpdated()
-
getUrl
public final URI getUrl()
-
-