Increase.SupplementalDocuments.EntitySupplementalDocument (Increase v1.0.0)

Copy Markdown View Source

Supplemental Documents are uploaded files connected to an Entity during onboarding.

Fields

  • created_at - The ISO 8601 time at which the Supplemental Document was created.
  • entity_id - The Entity the supplemental document is attached to.
  • file_id - The File containing the document.
  • 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.
  • type - A constant representing the object's type. For this resource it will always be entity_supplemental_document.

Summary

Types

t()

@type t() :: %Increase.SupplementalDocuments.EntitySupplementalDocument{
  created_at: DateTime.t(),
  entity_id: String.t(),
  file_id: String.t(),
  idempotency_key: String.t() | nil,
  type: String.t()
}