/**@class android.telephony.data.DataCallResponse
 implements android.os.Parcelable

@extends java.lang.Object

 Description of the response of a setup data call connection request.

 @hide
*/
var DataCallResponse = {

/**Unknown status */
LINK_STATUS_UNKNOWN : "-1",
/**Indicates the data connection is inactive. */
LINK_STATUS_INACTIVE : "0",
/**Indicates the data connection is active with physical link dormant. */
LINK_STATUS_DORMANT : "1",
/**Indicates the data connection is active with physical link up. */
LINK_STATUS_ACTIVE : "2",
/***/
CREATOR : "null",
/**
@return {Number} Data call fail cause. {@link DataFailCause#NONE} indicates no error.
*/
getCause : function(  ) {},

/**
@return {Number} The suggested data retry time in milliseconds.
*/
getSuggestedRetryTime : function(  ) {},

/**
@return {Number} The unique id of the data connection.
*/
getId : function(  ) {},

/**
@return {Number} The link status
*/
getLinkStatus : function(  ) {},

/**
@return {Number} The connection protocol type.
*/
getProtocolType : function(  ) {},

/**
@return {String} The network interface name (e.g. "rmnet_data1").
*/
getInterfaceName : function(  ) {},

/**
@return {Object {java.util.List}} A list of addresses of this data connection.
*/
getAddresses : function(  ) {},

/**
@return {Object {java.util.List}} A list of DNS server addresses, e.g., "192.0.1.3" or
 "192.0.1.11 2001:db8::1". Empty list if no dns server addresses returned.
*/
getDnsAddresses : function(  ) {},

/**
@return {Object {java.util.List}} A list of default gateway addresses, e.g., "192.0.1.3" or
 "192.0.1.11 2001:db8::1". Empty list if the addresses represent point to point connections.
*/
getGatewayAddresses : function(  ) {},

/**
@return {Object {java.util.List}} A list of Proxy Call State Control Function address via PCO (Protocol Configuration
 Option) for IMS client.
*/
getPcscfAddresses : function(  ) {},

/**
@return {Number} MTU (maximum transmission unit) in bytes received from network. Zero or negative
 values means network has either not sent a value or sent an invalid value.
*/
getMtu : function(  ) {},

/**
*/
toString : function(  ) {},

/**
*/
equals : function(  ) {},

/**
*/
hashCode : function(  ) {},

/**
*/
describeContents : function(  ) {},

/**
*/
writeToParcel : function(  ) {},


};