forked from danielberkompas/ex_twilio
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from aarongraham/add-subscription-events
Add subscription events support
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
defmodule ExTwilio.Events.SubscribedEvents do | ||
@moduledoc """ | ||
Represents Event Streams Subscription Events resource. | ||
- [Twilio docs](https://www.twilio.com/docs/events/event-streams/subscription/subscribed-event-api) | ||
""" | ||
|
||
defstruct [ | ||
:account_sid, | ||
:schema_version, | ||
:subscription_sid, | ||
:type, | ||
:url | ||
] | ||
|
||
use ExTwilio.Resource, import: [:stream, :all, :create, :destroy] | ||
|
||
def parents, | ||
do: [%ExTwilio.Parent{module: ExTwilio.Events.Subscriptions, key: :subscription_sid}] | ||
|
||
def resource_collection_name, do: "types" | ||
|
||
def resource_name, do: "SubscribedEvents" | ||
end |