Copyright | (c) 2015 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 |
Updates the track configuration for the specified track type. When halted, the rollout track cannot be updated without adding new APKs, and adding new APKs will cause it to resume. This method supports patch semantics.
See: Google Play Developer API Reference for androidpublisher.edits.tracks.patch
.
- type EditsTracksPatchResource = "androidpublisher" :> ("v2" :> ("applications" :> (Capture "packageName" Text :> ("edits" :> (Capture "editId" Text :> ("tracks" :> (Capture "track" EditsTracksPatchTrack :> (QueryParam "alt" AltJSON :> (ReqBody `[JSON]` Track :> Patch `[JSON]` Track)))))))))
- editsTracksPatch :: EditsTracksPatchTrack -> Text -> Track -> Text -> EditsTracksPatch
- data EditsTracksPatch
- etptTrack :: Lens' EditsTracksPatch EditsTracksPatchTrack
- etptPackageName :: Lens' EditsTracksPatch Text
- etptPayload :: Lens' EditsTracksPatch Track
- etptEditId :: Lens' EditsTracksPatch Text
REST Resource
type EditsTracksPatchResource = "androidpublisher" :> ("v2" :> ("applications" :> (Capture "packageName" Text :> ("edits" :> (Capture "editId" Text :> ("tracks" :> (Capture "track" EditsTracksPatchTrack :> (QueryParam "alt" AltJSON :> (ReqBody `[JSON]` Track :> Patch `[JSON]` Track))))))))) Source
A resource alias for androidpublisher.edits.tracks.patch
method which the
EditsTracksPatch
request conforms to.
Creating a Request
:: EditsTracksPatchTrack | |
-> Text | |
-> Track | |
-> Text | |
-> EditsTracksPatch |
Creates a value of EditsTracksPatch
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
data EditsTracksPatch Source
Updates the track configuration for the specified track type. When halted, the rollout track cannot be updated without adding new APKs, and adding new APKs will cause it to resume. This method supports patch semantics.
See: editsTracksPatch
smart constructor.
Request Lenses
etptTrack :: Lens' EditsTracksPatch EditsTracksPatchTrack Source
The track type to read or modify.
etptPackageName :: Lens' EditsTracksPatch Text Source
Unique identifier for the Android app that is being updated; for example, "com.spiffygame".
etptPayload :: Lens' EditsTracksPatch Track Source
Multipart request metadata.
etptEditId :: Lens' EditsTracksPatch Text Source
Unique identifier for this edit.