Shipping

data class Shipping @JvmOverloads constructor(    address: Address,     name: String,     carrier: String? = null,     phone: String? = null,     trackingNumber: String? = null) : StripeParamsModel, Parcelable

Shipping information for this PaymentIntent.

shipping

Constructors

Link copied to clipboard
fun Shipping(    address: Address,     name: String,     carrier: String? = null,     phone: String? = null,     trackingNumber: String? = null)

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
open override fun toParamMap(): Map<String, Any>
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)