UpdatePushFactorPayload

Describes the information required to update a Factor which type is Push
data class UpdatePushFactorPayload(sid: String,pushToken: String?) : UpdateFactorPayload

Constructors

<init>
Link copied to clipboard
fun <init>(sid: String, pushToken: String?)

Functions

component1
Link copied to clipboard
operator fun component1(): String
component2
Link copied to clipboard
operator fun component2(): String?
copy
Link copied to clipboard
fun copy(sid: String, pushToken: String?): UpdatePushFactorPayload
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

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?
sid
Link copied to clipboard
Factor Sid
open override val sid: String