-
Notifications
You must be signed in to change notification settings - Fork 2
CallRequest
Lejla Solak edited this page Feb 10, 2025
·
6 revisions
Getter for the token field.
none
-
String- The value of thetokenfield, which represents the authentication token provided in the request.
CallPhoneRequest callPhoneRequest = new CallPhoneRequest(obtainToken(), getApplicationContext(), "41793026727", this);
String token = callPhoneRequest.getToken();Getter for the context field.
none
-
Context- The value of thecontextfield, which represents the Android context provided in the request.
CallPhoneRequest callPhoneRequest = new CallPhoneRequest(obtainToken(), getApplicationContext(), "41793026727", this);
Context context = callPhoneRequest.getContext();Getter for the destination field.
none
-
String- The value of thedestinationfield, representing the remote endpoint's identity or phone number to call.
CallPhoneRequest callPhoneRequest = new CallPhoneRequest(obtainToken(), getApplicationContext(), "41793026727", this);
String destination = callPhoneRequest.getDestination();