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 intelligence v3 control_plane operator.ex
Raw

lib/twilio/resources/intelligence/v3/control_plane/operator.ex

# File generated from Twilio's OpenAPI spec — do not edit manually
defmodule Twilio.Resources.Intelligence.V3.ControlPlane.Operator do
@moduledoc """
Operator resource.
## Properties
| Field | Description |
|-------|-------------|
| `input` | A sample input text that demonstrates the type of content the Operator processes. |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `output` | The expected output corresponding to the provided input example. This value must be consistent with the defined `output_format` and `output_schema` of the Operator. |
"""
@type t :: %__MODULE__{
input: String.t(),
output: String.t()
}
defstruct [:input, :output]
@object_name "OperatorTrainingExample"
def object_name, do: @object_name
end