Packages

Complete Twilio SDK for Elixir — 37 products, 494 services, 467 resources. Auto-generated from official OpenAPI specs. Finch HTTP/2, retries with jitter, webhooks, TwiML, telemetry, streaming pagination.

Current section

Files

Jump to
twilio_elixir lib twilio resources knowledge v1 knowledge status.ex
Raw

lib/twilio/resources/knowledge/v1/knowledge/status.ex

# File generated from Twilio's OpenAPI spec — do not edit manually
defmodule Twilio.Resources.Knowledge.V1.Knowledge.Status do
@moduledoc """
Status resource.
Parent: `/Knowledge/{id}`
## Properties
| Field | Description |
|-------|-------------|
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `account_sid` | The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Knowledge resource. |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `date_updated` | The date and time in GMT when the Knowledge was last updated specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.. Format: date-time |
| `last_status` | The last status of processing the knowledge source ('QUEUED', 'PROCESSING', 'COMPLETED', 'FAILED') |
| `status` | The status of processing the knowledge source ('QUEUED', 'PROCESSING', 'COMPLETED', 'FAILED') |
"""
@type t :: %__MODULE__{
account_sid: String.t(),
date_updated: String.t(),
last_status: String.t(),
status: String.t()
}
defstruct [:account_sid, :date_updated, :last_status, :status]
@object_name "knowledge.v1.service.knowledge_status"
def object_name, do: @object_name
end