Increase.BeneficialOwners.EntityBeneficialOwner (Increase v1.0.0)

Copy Markdown View Source

Beneficial owners are the individuals who control or own 25% or more of a corporation entity. Beneficial owners are always people, and never organizations. Generally, you will need to submit between 1 and 5 beneficial owners for every corporation entity. You should update and archive beneficial owners for a corporation entity as their details change.

Fields

  • id - The identifier of this beneficial owner.
  • company_title - This person's role or title within the entity.
  • created_at - The ISO 8601 time at which the Beneficial Owner was created.
  • entity_id - The identifier of the Entity to which this beneficial owner belongs.
  • idempotency_key - The idempotency key you chose for this object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about idempotency.
  • individual - Personal details for the beneficial owner.
  • prongs - Why this person is considered a beneficial owner of the entity.
  • type - A constant representing the object's type. For this resource it will always be entity_beneficial_owner.

Summary

Types

t()

@type t() :: %Increase.BeneficialOwners.EntityBeneficialOwner{
  company_title: String.t() | nil,
  created_at: DateTime.t(),
  entity_id: String.t(),
  id: String.t(),
  idempotency_key: String.t() | nil,
  individual: Increase.BeneficialOwners.EntityBeneficialOwner.Individual.t(),
  prongs: [String.t()],
  type: String.t()
}