DownloadableSubscription
class DownloadableSubscription : Parcelable
Information about a subscription which is downloadable to an eUICC using EuiccManager#downloadSubscription(DownloadableSubscription, boolean, PendingIntent)
Summary
Inherited constants |
From class Parcelable
Int |
CONTENTS_FILE_DESCRIPTOR
Descriptor bit used with describeContents() : indicates that the Parcelable object's flattened representation includes a file descriptor.
|
Int |
PARCELABLE_WRITE_RETURN_VALUE
Flag for use with writeToParcel : the object being written is a return value, that is the result of a function such as "Parcelable someFunction() ", "void someFunction(out Parcelable) ", or "void someFunction(inout Parcelable) ". Some implementations may want to release resources at this point.
|
|
Public methods
describeContents
fun describeContents(): Int
forActivationCode
static fun forActivationCode(encodedActivationCode: String!): DownloadableSubscription!
Create a DownloadableSubscription for the given activation code.
This fills the encodedActivationCode field. Other fields like confirmationCode, carrierName and accessRules may be filled in the implementation of android.service.euicc.EuiccService
if exists.
Parameters |
encodedActivationCode |
String!: the activation code to use. An activation code can be parsed from a user scanned QR code. The format of activation code is defined in SGP.22. For example, "1$SMDP.GSMA.COM$04386-AGYFT-A74Y8-3F815$1.3.6.1.4.1.31746". For detail, see com.android.euicc.data.ActivationCode . Must not be null. |
getConfirmationCode
fun getConfirmationCode(): String?
Returns the confirmation code.
As an example, the confirmation code can be input by the user through a carrier app or the UI component of the eUICC local profile assistant (LPA) application.
Return |
String? |
This value may be null . |
getEncodedActivationCode
fun getEncodedActivationCode(): String?
Gets the activation code.
Return |
String? |
This value may be null . |
Properties