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.Types.List

Description

 

Synopsis

Documentation

class FromJSON b => List a b | a -> b where #

Minimal complete definition

getListWrapper, getList, getPlural

Methods

getListWrapper :: Wrapper (Maybe PagingInformation -> [b] -> a) #

Get the wrap-ed constructor of the List.

getList :: a -> [b] #

The items in the List.

getPlural :: Const Text (a, b) #

The plural name for the items in the List.

parseJSONToList :: Value -> Parser a #

Parse a JSON Value to an instance of the List.

Instances

List Accounts Account # 
List Addresses Address # 
List APIKeys APIKey # 
List Applications Application # 
List AuthorizedConnectApps AuthorizedConnectApp # 
List AvailablePhoneNumbers AvailablePhoneNumber # 
List Calls Call # 
List Participants Participant # 
List Conferences Conference # 
List ConnectApps ConnectApp # 
List IncomingPhoneNumbers IncomingPhoneNumber # 
List MediaList Media # 
List Messages Message # 
List OutgoingCallerIDs OutgoingCallerID # 
List Members Member # 
List Queues Queue # 
List Recordings Recording # 
List ShortCodes ShortCode # 
List Transcriptions Transcription # 
List UsageRecords UsageRecord # 
List UsageTriggers UsageTrigger # 

data PagingInformation #

Constructors

PagingInformation 

Fields

Instances

Eq PagingInformation # 
Data PagingInformation # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> PagingInformation -> c PagingInformation #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c PagingInformation #

toConstr :: PagingInformation -> Constr #

dataTypeOf :: PagingInformation -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c PagingInformation) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c PagingInformation) #

gmapT :: (forall b. Data b => b -> b) -> PagingInformation -> PagingInformation #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> PagingInformation -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> PagingInformation -> r #

gmapQ :: (forall d. Data d => d -> u) -> PagingInformation -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> PagingInformation -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> PagingInformation -> m PagingInformation #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> PagingInformation -> m PagingInformation #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> PagingInformation -> m PagingInformation #

Ord PagingInformation # 
Show PagingInformation # 
Generic PagingInformation # 
FromJSON PagingInformation # 

Methods

parseJSON :: Value -> Parser PagingInformation

parseJSONList :: Value -> Parser [PagingInformation]

type Rep PagingInformation # 

data Wrapper a #

wrap :: a -> Wrapper a #

wraps a value so as not to break encapsulation.