Class AppManifest
- java.lang.Object
-
- com.twilio.base.Resource
-
- com.twilio.rest.microvisor.v1.app.AppManifest
-
- All Implemented Interfaces:
Serializable
public class AppManifest 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 AppManifestFetcher
fetcher(String pathAppSid)
static AppManifest
fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a AppManifest object using the provided ObjectMapper.static AppManifest
fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a AppManifest object using the provided ObjectMapper.String
getAppSid()
String
getEncodedBytes()
String
getHash()
URI
getUrl()
int
hashCode()
-
-
-
Method Detail
-
fetcher
public static AppManifestFetcher fetcher(String pathAppSid)
-
fromJson
public static AppManifest fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a AppManifest object using the provided ObjectMapper.- Parameters:
json
- Raw JSON StringobjectMapper
- Jackson ObjectMapper- Returns:
- AppManifest object represented by the provided JSON
-
fromJson
public static AppManifest fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a AppManifest object using the provided ObjectMapper.- Parameters:
json
- Raw JSON InputStreamobjectMapper
- Jackson ObjectMapper- Returns:
- AppManifest object represented by the provided JSON
-
getAppSid
public final String getAppSid()
-
getHash
public final String getHash()
-
getEncodedBytes
public final String getEncodedBytes()
-
getUrl
public final URI getUrl()
-
-