Relationship

data class Relationship(val director: Boolean? = null, val executive: Boolean? = null, val owner: Boolean? = null, val percentOwnership: Int? = null, val representative: Boolean? = null, val title: String? = null) : StripeParamsModel, Parcelable

The relationship that this person has with the account’s legal entity.

person.relationship

Constructors

Link copied to clipboard
constructor(director: Boolean? = null, executive: Boolean? = null, owner: Boolean? = null, percentOwnership: Int? = null, representative: Boolean? = null, title: String? = null)

Types

Link copied to clipboard
class Builder

Properties

Link copied to clipboard
val director: Boolean? = null

Whether the person is a director of the account’s legal entity. Currently only required for accounts in the EU. Directors are typically members of the governing board of the company, or responsible for ensuring the company meets its regulatory obligations.

Link copied to clipboard
val executive: Boolean? = null

Whether the person has significant responsibility to control, manage, or direct the organization.

Link copied to clipboard
val owner: Boolean? = null

Whether the person is an owner of the account’s legal entity.

Link copied to clipboard
val percentOwnership: Int? = null

The percent owned by the person of the account’s legal entity.

Link copied to clipboard
val representative: Boolean? = null

Whether the person is authorized as the primary representative of the account. This is the person nominated by the business to provide information about themselves, and general information about the account. There can only be one representative at any given time. At the time the account is created, this person should be set to the person responsible for opening the account.

Link copied to clipboard
val title: String? = null

The person’s title (e.g., CEO, Support Engineer).

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)