twilio-0.3.0.0: Twilio REST API library for Haskell

Copyright(C) 2017- Mark Andrus Roberts
LicenseBSD-style (see the file LICENSE)
MaintainerMark Andrus Roberts <markandrusroberts@gmail.com>
Stabilityprovisional
Safe HaskellNone
LanguageHaskell98

Twilio.Internal.Resource

Description

 

Synopsis

Documentation

This module repackages functionality exposed by MonadRequest into a set of classes that REST resources can easily consume. It also provides functions get and post that work well with type inference.

class Get r where #

Get represents REST resources that support HTTP GET requests with any number of arguments.

Minimal complete definition

get

Methods

get :: r #

Instances

(MonadThrow m, Get2 a b r) => Get (a -> b -> TwilioT m r) #

Instances of Get2 are instances of Get.

Methods

get :: a -> b -> TwilioT m r #

(MonadThrow m, Get1 a r) => Get (a -> TwilioT m r) #

Instances of Get1 are instances of Get.

Methods

get :: a -> TwilioT m r #

(MonadThrow m, Get0 r) => Get (TwilioT m r) #

Instances of Get0 are instances of Get.

Methods

get :: TwilioT m r #

class Get0 r where #

Get0 represents REST resources that support HTTP GET requests with 0 arguments.

Minimal complete definition

get0

Methods

get0 :: MonadThrow m => TwilioT m r #

Instances

Get0 Accounts # 

Methods

get0 :: MonadThrow m => TwilioT m Accounts #

Get0 Addresses # 

Methods

get0 :: MonadThrow m => TwilioT m Addresses #

Get0 APIKeys # 

Methods

get0 :: MonadThrow m => TwilioT m APIKeys #

Get0 Applications # 

Methods

get0 :: MonadThrow m => TwilioT m Applications #

Get0 AuthorizedConnectApps # 

Methods

get0 :: MonadThrow m => TwilioT m AuthorizedConnectApps #

Get0 Calls # 

Methods

get0 :: MonadThrow m => TwilioT m Calls #

Get0 Conferences # 

Methods

get0 :: MonadThrow m => TwilioT m Conferences #

Get0 ConnectApps # 

Methods

get0 :: MonadThrow m => TwilioT m ConnectApps #

Get0 IncomingPhoneNumbers # 

Methods

get0 :: MonadThrow m => TwilioT m IncomingPhoneNumbers #

Get0 Messages # 

Methods

get0 :: MonadThrow m => TwilioT m Messages #

Get0 OutgoingCallerIDs # 

Methods

get0 :: MonadThrow m => TwilioT m OutgoingCallerIDs #

Get0 Queues # 

Methods

get0 :: MonadThrow m => TwilioT m Queues #

Get0 Recordings # 

Methods

get0 :: MonadThrow m => TwilioT m Recordings #

Get0 ShortCodes # 

Methods

get0 :: MonadThrow m => TwilioT m ShortCodes #

Get0 Transcriptions # 

Methods

get0 :: MonadThrow m => TwilioT m Transcriptions #

Get0 UsageRecords # 

Methods

get0 :: MonadThrow m => TwilioT m UsageRecords #

Get0 UsageTriggers # 

Methods

get0 :: MonadThrow m => TwilioT m UsageTriggers #

class Get1 a r where #

Get1 represents REST resources that support HTTP GET requests with 1 argument.

Minimal complete definition

get1

Methods

get1 :: MonadThrow m => a -> TwilioT m r #

Instances

Get1 ISOCountryCode AvailablePhoneNumbers # 

Methods

get1 :: MonadThrow m => ISOCountryCode -> TwilioT m AvailablePhoneNumbers #

Get1 AccountSID Account # 

Methods

get1 :: MonadThrow m => AccountSID -> TwilioT m Account #

Get1 AddressSID Address # 

Methods

get1 :: MonadThrow m => AddressSID -> TwilioT m Address #

Get1 APIKeySID APIKey # 

Methods

get1 :: MonadThrow m => APIKeySID -> TwilioT m APIKey #

Get1 ApplicationSID Application # 

Methods

get1 :: MonadThrow m => ApplicationSID -> TwilioT m Application #

Get1 CallSID Call # 

Methods

get1 :: MonadThrow m => CallSID -> TwilioT m Call #

Get1 CallSID Feedback # 

Methods

get1 :: MonadThrow m => CallSID -> TwilioT m Feedback #

Get1 ConferenceSID Conference # 

Methods

get1 :: MonadThrow m => ConferenceSID -> TwilioT m Conference #

Get1 ConferenceSID Participants # 

Methods

get1 :: MonadThrow m => ConferenceSID -> TwilioT m Participants #

Get1 ConnectAppSID AuthorizedConnectApp # 

Methods

get1 :: MonadThrow m => ConnectAppSID -> TwilioT m AuthorizedConnectApp #

Get1 ConnectAppSID ConnectApp # 

Methods

get1 :: MonadThrow m => ConnectAppSID -> TwilioT m ConnectApp #

Get1 PhoneNumberSID IncomingPhoneNumber # 

Methods

get1 :: MonadThrow m => PhoneNumberSID -> TwilioT m IncomingPhoneNumber #

Get1 PhoneNumberSID OutgoingCallerID # 

Methods

get1 :: MonadThrow m => PhoneNumberSID -> TwilioT m OutgoingCallerID #

Get1 QueueSID Queue # 

Methods

get1 :: MonadThrow m => QueueSID -> TwilioT m Queue #

Get1 QueueSID Member # 

Methods

get1 :: MonadThrow m => QueueSID -> TwilioT m Member #

Get1 QueueSID Members # 

Methods

get1 :: MonadThrow m => QueueSID -> TwilioT m Members #

Get1 RecordingSID Recording # 

Methods

get1 :: MonadThrow m => RecordingSID -> TwilioT m Recording #

Get1 ShortCodeSID ShortCode # 

Methods

get1 :: MonadThrow m => ShortCodeSID -> TwilioT m ShortCode #

Get1 TranscriptionSID Transcription # 

Methods

get1 :: MonadThrow m => TranscriptionSID -> TwilioT m Transcription #

Get1 MessageSID Message # 

Methods

get1 :: MonadThrow m => MessageSID -> TwilioT m Message #

Get1 MessageSID MediaList # 

Methods

get1 :: MonadThrow m => MessageSID -> TwilioT m MediaList #

Get1 UsageTriggerSID UsageTrigger # 

Methods

get1 :: MonadThrow m => UsageTriggerSID -> TwilioT m UsageTrigger #

class Get2 a b r where #

Get2 represents REST resources that support HTTP GET requests with 2 arguments.

Minimal complete definition

get2

Methods

get2 :: MonadThrow m => a -> b -> TwilioT m r #

Instances

Get2 ConferenceSID CallSID Participant # 

Methods

get2 :: MonadThrow m => ConferenceSID -> CallSID -> TwilioT m Participant #

Get2 QueueSID CallSID Member # 

Methods

get2 :: MonadThrow m => QueueSID -> CallSID -> TwilioT m Member #

Get2 MessageSID MediaSID Media # 

Methods

get2 :: MonadThrow m => MessageSID -> MediaSID -> TwilioT m Media #

class Post r where #

Post represents REST resources that support HTTP POST requests with any number of arguments.

Minimal complete definition

post

Methods

post :: r #

Instances

(MonadThrow m, Post3 a b c r) => Post (a -> b -> c -> TwilioT m r) # 

Methods

post :: a -> b -> c -> TwilioT m r #

(MonadThrow m, Post2 a b r) => Post (a -> b -> TwilioT m r) # 

Methods

post :: a -> b -> TwilioT m r #

(MonadThrow m, Post1 a r) => Post (a -> TwilioT m r) #

Instances of Post1 are instances of Post.

Methods

post :: a -> TwilioT m r #

(MonadThrow m, Post0 r) => Post (TwilioT m r) #

Instances of Post0 are instances of Post.

Methods

post :: TwilioT m r #

class Post0 r where #

Post0 represents REST resources that support HTTP POST requests with 0 arguments.

Minimal complete definition

post0

Methods

post0 :: MonadThrow m => TwilioT m r #

Instances

Post0 Token # 

Methods

post0 :: MonadThrow m => TwilioT m Token #

class Post1 a r where #

Post1 represents REST resources that support HTTP POST requests with 1 argument.

Minimal complete definition

post1

Methods

post1 :: MonadThrow m => a -> TwilioT m r #

Instances

Post1 Integer Token # 

Methods

post1 :: MonadThrow m => Integer -> TwilioT m Token #

Post1 PostCalls Call # 

Methods

post1 :: MonadThrow m => PostCalls -> TwilioT m Call #

Post1 PostCopilotMessage Message # 

Methods

post1 :: MonadThrow m => PostCopilotMessage -> TwilioT m Message #

Post1 PostMessage Message # 

Methods

post1 :: MonadThrow m => PostMessage -> TwilioT m Message #

Post1 PostQueues Queue # 

Methods

post1 :: MonadThrow m => PostQueues -> TwilioT m Queue #

Post1 (Maybe Integer) Token # 

Methods

post1 :: MonadThrow m => Maybe Integer -> TwilioT m Token #

class Post2 a b r where #

Post2 represents REST resources that support HTTP POST requests with 2 arguments.

Minimal complete definition

post2

Methods

post2 :: MonadThrow m => a -> b -> TwilioT m r #

class Post3 a b c r where #

Post3 represents REST resources that support HTTP POST requests with 3 arguments.

Minimal complete definition

post3

Methods

post3 :: MonadThrow m => a -> b -> c -> TwilioT m r #

class Delete r where #

Delete represents REST resources that support HTTP DELETE requests with any number of arguments.

Minimal complete definition

delete

Methods

delete :: r #

Instances

(MonadThrow m, Delete1 a) => Delete (a -> TwilioT m ()) #

Instances of Delete1 are instances of Delete.

Methods

delete :: a -> TwilioT m () #

class Delete1 a where #

Delete1 represents REST resources that support HTTP POST requests with 1 argument.

Minimal complete definition

delete1

Methods

delete1 :: MonadThrow m => a -> TwilioT m () #

parseJSONFromResponse :: (FromJSON a, MonadThrow m) => Response ByteString -> m a #