Class SigningKey
- java.lang.Object
-
- com.twilio.base.Resource
-
- com.twilio.rest.api.v2010.account.SigningKey
-
- All Implemented Interfaces:
Serializable
public class SigningKey extends Resource
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SigningKeyDeleterdeleter(String pathSid)static SigningKeyDeleterdeleter(String pathAccountSid, String pathSid)booleanequals(Object o)static SigningKeyFetcherfetcher(String pathSid)static SigningKeyFetcherfetcher(String pathAccountSid, String pathSid)static SigningKeyfromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)Converts a JSON InputStream into a SigningKey object using the provided ObjectMapper.static SigningKeyfromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)Converts a JSON String into a SigningKey object using the provided ObjectMapper.ZonedDateTimegetDateCreated()ZonedDateTimegetDateUpdated()StringgetFriendlyName()StringgetSid()inthashCode()static SigningKeyReaderreader()static SigningKeyReaderreader(String pathAccountSid)static SigningKeyUpdaterupdater(String pathSid)static SigningKeyUpdaterupdater(String pathAccountSid, String pathSid)
-
-
-
Method Detail
-
fetcher
public static SigningKeyFetcher fetcher(String pathSid)
-
fetcher
public static SigningKeyFetcher fetcher(String pathAccountSid, String pathSid)
-
deleter
public static SigningKeyDeleter deleter(String pathSid)
-
deleter
public static SigningKeyDeleter deleter(String pathAccountSid, String pathSid)
-
reader
public static SigningKeyReader reader()
-
reader
public static SigningKeyReader reader(String pathAccountSid)
-
updater
public static SigningKeyUpdater updater(String pathSid)
-
updater
public static SigningKeyUpdater updater(String pathAccountSid, String pathSid)
-
fromJson
public static SigningKey fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a SigningKey object using the provided ObjectMapper.- Parameters:
json- Raw JSON StringobjectMapper- Jackson ObjectMapper- Returns:
- SigningKey object represented by the provided JSON
-
fromJson
public static SigningKey fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a SigningKey object using the provided ObjectMapper.- Parameters:
json- Raw JSON InputStreamobjectMapper- Jackson ObjectMapper- Returns:
- SigningKey object represented by the provided JSON
-
getSid
public final String getSid()
-
getFriendlyName
public final String getFriendlyName()
-
getDateCreated
public final ZonedDateTime getDateCreated()
-
getDateUpdated
public final ZonedDateTime getDateUpdated()
-
-