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 studio v2 flow validate.ex
Raw

lib/twilio/resources/studio/v2/flow/validate.ex

# File generated from Twilio's OpenAPI spec — do not edit manually
defmodule Twilio.Resources.Studio.V2.Flow.Validate do
@moduledoc """
Flow definition validator
## Properties
| Field | Description |
|-------|-------------|
| `valid` | Boolean if the flow definition is valid. |
"""
@type t :: %__MODULE__{
valid: boolean() | nil
}
defstruct [:valid]
@object_name "studio.v2.flow_validate"
def object_name, do: @object_name
end