PushFactorPayload

Describes the information required to create a Factor which type is Push
class PushFactorPayload(friendlyName: String,serviceSid: String,identity: String,pushToken: String?,accessToken: String,metadata: Map<String, String>?) : FactorPayload

See also

FactorType
Link copied to clipboard

Constructors

<init>
Link copied to clipboard
fun <init>(friendlyName: String, serviceSid: String, identity: String, pushToken: String?, accessToken: String, metadata: Map<String, String>?)

Functions

equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
toString
Link copied to clipboard
open override fun toString(): String

Properties

accessToken
Link copied to clipboard
Previously generated Access Token using the /accessTokens endpoint
val accessToken: String
factorType
Link copied to clipboard
Type of the factor
open override val factorType: FactorType
friendlyName
Link copied to clipboard
A human readable description of this resource, up to 64 characters. For a push factor, this can be the device's name.
open override val friendlyName: String
identity
Link copied to clipboard
Identifies the user, should be an UUID you should not use PII (Personal Identifiable Information) because the systems that will process this attribute assume it is not directly identifying information
open override val identity: String
metadata
Link copied to clipboard
Custom metadata associated with the factor. This is added by the Device/SDK directly to allow for the inclusion of device information.
val metadata: Map<String, String>?
pushToken
Link copied to clipboard
(Optional) Registration token generated by the FCM SDK on initial startup of your app. Sending null or empty will disable sending push notifications for challenges associated to this factor
val pushToken: String?
serviceSid
Link copied to clipboard
Service sid
open override val serviceSid: String