View Source ExOAPI.Stripe.Schemas.PersonRelationship (exoapi_stripe v0.1.4)

:director :: :boolean

Whether the person is a director of the account's legal entity. Directors are typically members of the governing board of the company, or responsible for ensuring the company meets its regulatory obligations.

:executive :: :boolean

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

:owner :: :boolean

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

:percent_ownership :: :number

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

:representative :: :boolean

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.

:title :: :string

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

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.PersonRelationship{
  director: boolean() | nil,
  executive: boolean() | nil,
  owner: boolean() | nil,
  percent_ownership: float() | nil,
  representative: boolean() | nil,
  title: String.t() | nil
}

Link to this section Functions

Link to this function

changeset(struct \\ %__MODULE__{}, params)

View Source
@spec changeset(t(), params()) :: Ecto.Changeset.t()