Package com.twilio.voice
Class CancelledCallInvite
- java.lang.Object
-
- com.twilio.voice.CancelledCallInvite
-
- All Implemented Interfaces:
android.os.Parcelable
public class CancelledCallInvite extends java.lang.Object implements android.os.Parcelable
Represents an incoming call cancellation.
-
-
Field Summary
Fields Modifier and Type Field Description static android.os.Parcelable.Creator
CREATOR
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
describeContents()
boolean
equals(java.lang.Object o)
java.lang.String
getCallSid()
Returns the CallSid.java.util.Map<java.lang.String,java.lang.String>
getCustomParameters()
Returns the custom parameters.java.lang.String
getFrom()
Returns the caller information.java.lang.String
getTo()
Returns the callee information.void
writeToParcel(android.os.Parcel dest, int flags)
-
-
-
Method Detail
-
getFrom
@Nullable public java.lang.String getFrom()
Returns the caller information.
-
getTo
@NonNull public java.lang.String getTo()
Returns the callee information.
-
getCallSid
@NonNull public java.lang.String getCallSid()
Returns the CallSid.
-
getCustomParameters
@NonNull public java.util.Map<java.lang.String,java.lang.String> getCustomParameters()
Returns the custom parameters.// Pass custom parameters in TwiML <?xml version="1.0" encoding="UTF-8"?> <Response> <Dial answerOnBridge="false" callerId="client:alice"> <Client> <Identity>bob</Identity> <Parameter name="caller_first_name" value="alice" /> <Parameter name="caller_last_name" value="smith" /> </Client> </Dial> </Response>
`cancelledCallInvite.getCustomParameters()` returns a map of key-value pair passed in the TwiML."caller_first_name" -> "alice" "caller_last_name" -> "smith"
-
describeContents
public int describeContents()
- Specified by:
describeContents
in interfaceandroid.os.Parcelable
-
writeToParcel
public void writeToParcel(android.os.Parcel dest, int flags)
- Specified by:
writeToParcel
in interfaceandroid.os.Parcelable
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
-