ICreateCredentialCallbacks

@Generated(value = "//java/com/google/android/aidl")
interface ICreateCredentialCallbacks : IInterface


Interface for the callbacks of the credential creation.

Summary

Public functions

Unit
onFailure(type: String!, message: String!)

Called when the credential creation fails.

Unit

Called when the credential creation is successful.

Unit
onSuccessV2(
    response: CreateCredentialResponse!,
    pendingIntent: PendingIntent!
)

Called when the credential creation is successful.

Inherited functions

From android.os.IInterface

Public functions

onFailure

fun onFailure(type: String!, message: String!): Unit

Called when the credential creation fails.

Parameters
type: String!

The type of the error.

message: String!

The error message.

onSuccess

fun onSuccess(response: CreateCredentialResponse!): Unit

Called when the credential creation is successful.

onSuccessV2

fun onSuccessV2(
    response: CreateCredentialResponse!,
    pendingIntent: PendingIntent!
): Unit

Called when the credential creation is successful.

Parameters
response: CreateCredentialResponse!

The response containing the credential creation details.

pendingIntent: PendingIntent!

The pending intent to be used to complete the credential creation.