public class AndroidPublisher.Edits extends Object
Modifier and Type | Class and Description |
---|---|
class |
AndroidPublisher.Edits.Apks
The "apks" collection of methods.
|
class |
AndroidPublisher.Edits.Bundles
The "bundles" collection of methods.
|
class |
AndroidPublisher.Edits.Commit |
class |
AndroidPublisher.Edits.Delete |
class |
AndroidPublisher.Edits.Deobfuscationfiles
The "deobfuscationfiles" collection of methods.
|
class |
AndroidPublisher.Edits.Details
The "details" collection of methods.
|
class |
AndroidPublisher.Edits.Expansionfiles
The "expansionfiles" collection of methods.
|
class |
AndroidPublisher.Edits.Get |
class |
AndroidPublisher.Edits.Images
The "images" collection of methods.
|
class |
AndroidPublisher.Edits.Insert |
class |
AndroidPublisher.Edits.Listings
The "listings" collection of methods.
|
class |
AndroidPublisher.Edits.Testers
The "testers" collection of methods.
|
class |
AndroidPublisher.Edits.Tracks
The "tracks" collection of methods.
|
class |
AndroidPublisher.Edits.Validate |
Constructor and Description |
---|
Edits() |
Modifier and Type | Method and Description |
---|---|
AndroidPublisher.Edits.Apks |
apks()
An accessor for creating requests from the Apks collection.
|
AndroidPublisher.Edits.Bundles |
bundles()
An accessor for creating requests from the Bundles collection.
|
AndroidPublisher.Edits.Commit |
commit(String packageName,
String editId)
Commits/applies the changes made in this edit back to the app.
|
AndroidPublisher.Edits.Delete |
delete(String packageName,
String editId)
Deletes an edit for an app.
|
AndroidPublisher.Edits.Deobfuscationfiles |
deobfuscationfiles()
An accessor for creating requests from the Deobfuscationfiles collection.
|
AndroidPublisher.Edits.Details |
details()
An accessor for creating requests from the Details collection.
|
AndroidPublisher.Edits.Expansionfiles |
expansionfiles()
An accessor for creating requests from the Expansionfiles collection.
|
AndroidPublisher.Edits.Get |
get(String packageName,
String editId)
Returns information about the edit specified.
|
AndroidPublisher.Edits.Images |
images()
An accessor for creating requests from the Images collection.
|
AndroidPublisher.Edits.Insert |
insert(String packageName,
AppEdit content)
Creates a new edit for an app, populated with the app's current state.
|
AndroidPublisher.Edits.Listings |
listings()
An accessor for creating requests from the Listings collection.
|
AndroidPublisher.Edits.Testers |
testers()
An accessor for creating requests from the Testers collection.
|
AndroidPublisher.Edits.Tracks |
tracks()
An accessor for creating requests from the Tracks collection.
|
AndroidPublisher.Edits.Validate |
validate(String packageName,
String editId)
Checks that the edit can be successfully committed.
|
public AndroidPublisher.Edits.Commit commit(String packageName, String editId) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.packageName
- Unique identifier for the Android app that is being updated; for example, "com.spiffygame".editId
- Unique identifier for this edit.IOException
public AndroidPublisher.Edits.Delete delete(String packageName, String editId) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.packageName
- Unique identifier for the Android app that is being updated; for example, "com.spiffygame".editId
- Unique identifier for this edit.IOException
public AndroidPublisher.Edits.Get get(String packageName, String editId) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.packageName
- Unique identifier for the Android app that is being updated; for example, "com.spiffygame".editId
- Unique identifier for this edit.IOException
public AndroidPublisher.Edits.Insert insert(String packageName, AppEdit content) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.packageName
- Unique identifier for the Android app that is being updated; for example, "com.spiffygame".content
- the AppEdit
IOException
public AndroidPublisher.Edits.Validate validate(String packageName, String editId) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.packageName
- Unique identifier for the Android app that is being updated; for example, "com.spiffygame".editId
- Unique identifier for this edit.IOException
public AndroidPublisher.Edits.Apks apks()
The typical use is:
AndroidPublisher androidpublisher = new AndroidPublisher(...);
AndroidPublisher.Apks.List request = androidpublisher.apks().list(parameters ...)
public AndroidPublisher.Edits.Bundles bundles()
The typical use is:
AndroidPublisher androidpublisher = new AndroidPublisher(...);
AndroidPublisher.Bundles.List request = androidpublisher.bundles().list(parameters ...)
public AndroidPublisher.Edits.Deobfuscationfiles deobfuscationfiles()
The typical use is:
AndroidPublisher androidpublisher = new AndroidPublisher(...);
AndroidPublisher.Deobfuscationfiles.List request = androidpublisher.deobfuscationfiles().list(parameters ...)
public AndroidPublisher.Edits.Details details()
The typical use is:
AndroidPublisher androidpublisher = new AndroidPublisher(...);
AndroidPublisher.Details.List request = androidpublisher.details().list(parameters ...)
public AndroidPublisher.Edits.Expansionfiles expansionfiles()
The typical use is:
AndroidPublisher androidpublisher = new AndroidPublisher(...);
AndroidPublisher.Expansionfiles.List request = androidpublisher.expansionfiles().list(parameters ...)
public AndroidPublisher.Edits.Images images()
The typical use is:
AndroidPublisher androidpublisher = new AndroidPublisher(...);
AndroidPublisher.Images.List request = androidpublisher.images().list(parameters ...)
public AndroidPublisher.Edits.Listings listings()
The typical use is:
AndroidPublisher androidpublisher = new AndroidPublisher(...);
AndroidPublisher.Listings.List request = androidpublisher.listings().list(parameters ...)
public AndroidPublisher.Edits.Testers testers()
The typical use is:
AndroidPublisher androidpublisher = new AndroidPublisher(...);
AndroidPublisher.Testers.List request = androidpublisher.testers().list(parameters ...)
public AndroidPublisher.Edits.Tracks tracks()
The typical use is:
AndroidPublisher androidpublisher = new AndroidPublisher(...);
AndroidPublisher.Tracks.List request = androidpublisher.tracks().list(parameters ...)
Copyright © 2011–2019 Google. All rights reserved.