Checks

data class Checks @RestrictTo(value = [RestrictTo.Scope.LIBRARY_GROUP]) constructor(    val addressLine1Check: String?,     val addressPostalCodeCheck: String?,     val cvcCheck: String?) : StripeModel

Checks on Card address and CVC if provided

card.checks

Constructors

Link copied to clipboard
fun Checks(    addressLine1Check: String?,     addressPostalCodeCheck: String?,     cvcCheck: String?)

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

Link copied to clipboard
val addressLine1Check: String?

If a address line1 was provided, results of the check, one of pass, fail, unavailable, or unchecked.

Link copied to clipboard
val addressPostalCodeCheck: String?

If a address postal code was provided, results of the check, one of pass, fail, unavailable, or unchecked.

Link copied to clipboard
val cvcCheck: String?

If a CVC was provided, results of the check, one of pass, fail, unavailable, or unchecked.