AddressJapanParams

data class AddressJapanParams(    val city: String? = null,     val country: String? = null,     val line1: String? = null,     val line2: String? = null,     val postalCode: String? = null,     val state: String? = null,     val town: String? = null) : StripeParamsModel, Parcelable

Constructors

Link copied to clipboard
constructor(    city: String? = null,     country: String? = null,     line1: String? = null,     line2: String? = null,     postalCode: String? = null,     state: String? = null,     town: String? = null)

Types

Link copied to clipboard
class Builder

Properties

Link copied to clipboard
val city: String? = null

City or ward.

Link copied to clipboard
val country: String? = null

Two-letter country code (ISO 3166-1 alpha-2).

Link copied to clipboard
val line1: String? = null

Block or building number.

Link copied to clipboard
val line2: String? = null

Building details.

Link copied to clipboard
val postalCode: String? = null

Postal code.

Link copied to clipboard
val state: String? = null

Prefecture.

Link copied to clipboard
val town: String? = null

Town or cho-me.

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)