Class VerificationCheck
- java.lang.Object
-
- com.twilio.base.Resource
-
- com.twilio.rest.verify.v2.service.VerificationCheck
-
- All Implemented Interfaces:
Serializable
public class VerificationCheck extends Resource
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
VerificationCheck.Channel
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static VerificationCheckCreator
creator(String pathServiceSid)
boolean
equals(Object o)
static VerificationCheck
fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a VerificationCheck object using the provided ObjectMapper.static VerificationCheck
fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a VerificationCheck object using the provided ObjectMapper.String
getAccountSid()
String
getAmount()
VerificationCheck.Channel
getChannel()
ZonedDateTime
getDateCreated()
ZonedDateTime
getDateUpdated()
String
getPayee()
String
getServiceSid()
String
getSid()
List<Map<String,Object>>
getSnaAttemptsErrorCodes()
String
getStatus()
String
getTo()
Boolean
getValid()
int
hashCode()
-
-
-
Method Detail
-
creator
public static VerificationCheckCreator creator(String pathServiceSid)
-
fromJson
public static VerificationCheck fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a VerificationCheck object using the provided ObjectMapper.- Parameters:
json
- Raw JSON StringobjectMapper
- Jackson ObjectMapper- Returns:
- VerificationCheck object represented by the provided JSON
-
fromJson
public static VerificationCheck fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a VerificationCheck object using the provided ObjectMapper.- Parameters:
json
- Raw JSON InputStreamobjectMapper
- Jackson ObjectMapper- Returns:
- VerificationCheck object represented by the provided JSON
-
getSid
public final String getSid()
-
getServiceSid
public final String getServiceSid()
-
getAccountSid
public final String getAccountSid()
-
getTo
public final String getTo()
-
getChannel
public final VerificationCheck.Channel getChannel()
-
getStatus
public final String getStatus()
-
getValid
public final Boolean getValid()
-
getAmount
public final String getAmount()
-
getPayee
public final String getPayee()
-
getDateCreated
public final ZonedDateTime getDateCreated()
-
getDateUpdated
public final ZonedDateTime getDateUpdated()
-
-