Current section
Files
Jump to
Current section
Files
lib/ex_twilio/resources/message.ex
defmodule ExTwilio.Message do
@moduledoc """
Represents an Message resource in the Twilio API.
- [Twilio docs](https://www.twilio.com/docs/api/rest/messages)
Here is an example of sending an SMS message:
{target_number, twilio_number_you_own, body} = {"+12223334444", "+19223334444", "Hello World"}
ExTwilio.Message.create(to: target_number, from: twilio_number_you_own, body: body)
"""
defstruct sid: nil,
date_created: nil,
date_updated: nil,
date_sent: nil,
account_sid: nil,
from: nil,
to: nil,
body: nil,
num_media: nil,
num_segments: nil,
status: nil,
error_code: nil,
error_message: nil,
direction: nil,
price: nil,
price_unit: nil,
api_version: nil,
uri: nil,
subresource_uri: nil,
messaging_service_sid: nil
use ExTwilio.Resource,
import: [
:stream,
:all,
:find,
:create,
:update,
:destroy
]
def parents, do: [:account]
end