Copyright | (c) 2015-2016 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Language | Haskell2010 |
Retrieves a list of sizes, possibly filtered. Retrieved sizes are globally unique and may include values not currently in use by your account. Due to this, the list of sizes returned by this method may differ from the list seen in the Trafficking UI.
See: DCM/DFA Reporting And Trafficking API Reference for dfareporting.sizes.list
.
Synopsis
- type SizesListResource = "dfareporting" :> ("v3.2" :> ("userprofiles" :> (Capture "profileId" (Textual Int64) :> ("sizes" :> (QueryParam "height" (Textual Int32) :> (QueryParams "ids" (Textual Int64) :> (QueryParam "width" (Textual Int32) :> (QueryParam "iabStandard" Bool :> (QueryParam "alt" AltJSON :> Get '[JSON] SizesListResponse)))))))))
- sizesList :: Int64 -> SizesList
- data SizesList
- slHeight :: Lens' SizesList (Maybe Int32)
- slIds :: Lens' SizesList [Int64]
- slWidth :: Lens' SizesList (Maybe Int32)
- slProFileId :: Lens' SizesList Int64
- slIabStandard :: Lens' SizesList (Maybe Bool)
REST Resource
type SizesListResource = "dfareporting" :> ("v3.2" :> ("userprofiles" :> (Capture "profileId" (Textual Int64) :> ("sizes" :> (QueryParam "height" (Textual Int32) :> (QueryParams "ids" (Textual Int64) :> (QueryParam "width" (Textual Int32) :> (QueryParam "iabStandard" Bool :> (QueryParam "alt" AltJSON :> Get '[JSON] SizesListResponse))))))))) Source #
A resource alias for dfareporting.sizes.list
method which the
SizesList
request conforms to.
Creating a Request
Creates a value of SizesList
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
Retrieves a list of sizes, possibly filtered. Retrieved sizes are globally unique and may include values not currently in use by your account. Due to this, the list of sizes returned by this method may differ from the list seen in the Trafficking UI.
See: sizesList
smart constructor.