Class Application
- java.lang.Object
-
- com.twilio.base.Resource
-
- com.twilio.rest.api.v2010.account.Application
-
- All Implemented Interfaces:
Serializable
public class Application extends Resource
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ApplicationCreatorcreator()static ApplicationCreatorcreator(String pathAccountSid)static ApplicationDeleterdeleter(String pathSid)static ApplicationDeleterdeleter(String pathAccountSid, String pathSid)booleanequals(Object o)static ApplicationFetcherfetcher(String pathSid)static ApplicationFetcherfetcher(String pathAccountSid, String pathSid)static ApplicationfromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)Converts a JSON InputStream into a Application object using the provided ObjectMapper.static ApplicationfromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)Converts a JSON String into a Application object using the provided ObjectMapper.inthashCode()static ApplicationReaderreader()static ApplicationReaderreader(String pathAccountSid)static StringtoJson(Object object, com.fasterxml.jackson.databind.ObjectMapper mapper)static ApplicationUpdaterupdater(String pathSid)static ApplicationUpdaterupdater(String pathAccountSid, String pathSid)
-
-
-
Method Detail
-
creator
public static ApplicationCreator creator()
-
creator
public static ApplicationCreator creator(String pathAccountSid)
-
deleter
public static ApplicationDeleter deleter(String pathSid)
-
deleter
public static ApplicationDeleter deleter(String pathAccountSid, String pathSid)
-
fetcher
public static ApplicationFetcher fetcher(String pathSid)
-
fetcher
public static ApplicationFetcher fetcher(String pathAccountSid, String pathSid)
-
reader
public static ApplicationReader reader()
-
reader
public static ApplicationReader reader(String pathAccountSid)
-
updater
public static ApplicationUpdater updater(String pathSid)
-
updater
public static ApplicationUpdater updater(String pathAccountSid, String pathSid)
-
fromJson
public static Application fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a Application object using the provided ObjectMapper.- Parameters:
json- Raw JSON StringobjectMapper- Jackson ObjectMapper- Returns:
- Application object represented by the provided JSON
-
fromJson
public static Application fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a Application object using the provided ObjectMapper.- Parameters:
json- Raw JSON InputStreamobjectMapper- Jackson ObjectMapper- Returns:
- Application object represented by the provided JSON
-
toJson
public static String toJson(Object object, com.fasterxml.jackson.databind.ObjectMapper mapper)
-
-