Class CredentialList
- java.lang.Object
-
- com.twilio.base.Resource
-
- com.twilio.rest.api.v2010.account.sip.CredentialList
-
- All Implemented Interfaces:
Serializable
public class CredentialList extends Resource
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CredentialListCreator
creator(String friendlyName)
static CredentialListCreator
creator(String pathAccountSid, String friendlyName)
static CredentialListDeleter
deleter(String pathSid)
static CredentialListDeleter
deleter(String pathAccountSid, String pathSid)
boolean
equals(Object o)
static CredentialListFetcher
fetcher(String pathSid)
static CredentialListFetcher
fetcher(String pathAccountSid, String pathSid)
static CredentialList
fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a CredentialList object using the provided ObjectMapper.static CredentialList
fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a CredentialList object using the provided ObjectMapper.String
getAccountSid()
ZonedDateTime
getDateCreated()
ZonedDateTime
getDateUpdated()
String
getFriendlyName()
String
getSid()
Map<String,String>
getSubresourceUris()
String
getUri()
int
hashCode()
static CredentialListReader
reader()
static CredentialListReader
reader(String pathAccountSid)
static CredentialListUpdater
updater(String pathSid, String friendlyName)
static CredentialListUpdater
updater(String pathAccountSid, String pathSid, String friendlyName)
-
-
-
Method Detail
-
creator
public static CredentialListCreator creator(String friendlyName)
-
creator
public static CredentialListCreator creator(String pathAccountSid, String friendlyName)
-
deleter
public static CredentialListDeleter deleter(String pathSid)
-
deleter
public static CredentialListDeleter deleter(String pathAccountSid, String pathSid)
-
fetcher
public static CredentialListFetcher fetcher(String pathSid)
-
fetcher
public static CredentialListFetcher fetcher(String pathAccountSid, String pathSid)
-
reader
public static CredentialListReader reader()
-
reader
public static CredentialListReader reader(String pathAccountSid)
-
updater
public static CredentialListUpdater updater(String pathSid, String friendlyName)
-
updater
public static CredentialListUpdater updater(String pathAccountSid, String pathSid, String friendlyName)
-
fromJson
public static CredentialList fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a CredentialList object using the provided ObjectMapper.- Parameters:
json
- Raw JSON StringobjectMapper
- Jackson ObjectMapper- Returns:
- CredentialList object represented by the provided JSON
-
fromJson
public static CredentialList fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a CredentialList object using the provided ObjectMapper.- Parameters:
json
- Raw JSON InputStreamobjectMapper
- Jackson ObjectMapper- Returns:
- CredentialList object represented by the provided JSON
-
getAccountSid
public final String getAccountSid()
-
getDateCreated
public final ZonedDateTime getDateCreated()
-
getDateUpdated
public final ZonedDateTime getDateUpdated()
-
getFriendlyName
public final String getFriendlyName()
-
getSid
public final String getSid()
-
getUri
public final String getUri()
-
-