blob: 39c8d8bb85b66d22d9df80d52efca79b08c65ced [file] [log] [blame]
Bu Sun Kim715bd7f2019-06-14 16:50:42 -07001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="androidpublisher_v3.html">Google Play Developer API</a> . <a href="androidpublisher_v3.edits.html">edits</a> . <a href="androidpublisher_v3.edits.details.html">details</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="#get">get(packageName, editId)</a></code></p>
79<p class="firstline">Fetches app details for this edit. This includes the default language and developer support contact information.</p>
80<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070081 <code><a href="#patch">patch(packageName, editId, body=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070082<p class="firstline">Updates app details for this edit. This method supports patch semantics.</p>
83<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070084 <code><a href="#update">update(packageName, editId, body=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070085<p class="firstline">Updates app details for this edit.</p>
86<h3>Method Details</h3>
87<div class="method">
88 <code class="details" id="get">get(packageName, editId)</code>
89 <pre>Fetches app details for this edit. This includes the default language and developer support contact information.
90
91Args:
Bu Sun Kim65020912020-05-20 12:08:20 -070092 packageName: string, Unique identifier for the Android app that is being updated; for example, &quot;com.spiffygame&quot;. (required)
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070093 editId: string, Unique identifier for this edit. (required)
94
95Returns:
96 An object of the form:
97
98 {
Bu Sun Kim65020912020-05-20 12:08:20 -070099 &quot;contactEmail&quot;: &quot;A String&quot;, # The user-visible support email for this app.
100 &quot;contactPhone&quot;: &quot;A String&quot;, # The user-visible support telephone number for this app.
101 &quot;contactWebsite&quot;: &quot;A String&quot;, # The user-visible website for this app.
102 &quot;defaultLanguage&quot;: &quot;A String&quot;, # Default language code, in BCP 47 format (eg &quot;en-US&quot;).
103 }</pre>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700104</div>
105
106<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700107 <code class="details" id="patch">patch(packageName, editId, body=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700108 <pre>Updates app details for this edit. This method supports patch semantics.
109
110Args:
Bu Sun Kim65020912020-05-20 12:08:20 -0700111 packageName: string, Unique identifier for the Android app that is being updated; for example, &quot;com.spiffygame&quot;. (required)
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700112 editId: string, Unique identifier for this edit. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700113 body: object, The request body.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700114 The object takes the form of:
115
116{
Bu Sun Kim65020912020-05-20 12:08:20 -0700117 &quot;contactEmail&quot;: &quot;A String&quot;, # The user-visible support email for this app.
118 &quot;contactPhone&quot;: &quot;A String&quot;, # The user-visible support telephone number for this app.
119 &quot;contactWebsite&quot;: &quot;A String&quot;, # The user-visible website for this app.
120 &quot;defaultLanguage&quot;: &quot;A String&quot;, # Default language code, in BCP 47 format (eg &quot;en-US&quot;).
121}
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700122
123
124Returns:
125 An object of the form:
126
127 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700128 &quot;contactEmail&quot;: &quot;A String&quot;, # The user-visible support email for this app.
129 &quot;contactPhone&quot;: &quot;A String&quot;, # The user-visible support telephone number for this app.
130 &quot;contactWebsite&quot;: &quot;A String&quot;, # The user-visible website for this app.
131 &quot;defaultLanguage&quot;: &quot;A String&quot;, # Default language code, in BCP 47 format (eg &quot;en-US&quot;).
132 }</pre>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700133</div>
134
135<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700136 <code class="details" id="update">update(packageName, editId, body=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700137 <pre>Updates app details for this edit.
138
139Args:
Bu Sun Kim65020912020-05-20 12:08:20 -0700140 packageName: string, Unique identifier for the Android app that is being updated; for example, &quot;com.spiffygame&quot;. (required)
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700141 editId: string, Unique identifier for this edit. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700142 body: object, The request body.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700143 The object takes the form of:
144
145{
Bu Sun Kim65020912020-05-20 12:08:20 -0700146 &quot;contactEmail&quot;: &quot;A String&quot;, # The user-visible support email for this app.
147 &quot;contactPhone&quot;: &quot;A String&quot;, # The user-visible support telephone number for this app.
148 &quot;contactWebsite&quot;: &quot;A String&quot;, # The user-visible website for this app.
149 &quot;defaultLanguage&quot;: &quot;A String&quot;, # Default language code, in BCP 47 format (eg &quot;en-US&quot;).
150}
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700151
152
153Returns:
154 An object of the form:
155
156 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700157 &quot;contactEmail&quot;: &quot;A String&quot;, # The user-visible support email for this app.
158 &quot;contactPhone&quot;: &quot;A String&quot;, # The user-visible support telephone number for this app.
159 &quot;contactWebsite&quot;: &quot;A String&quot;, # The user-visible website for this app.
160 &quot;defaultLanguage&quot;: &quot;A String&quot;, # Default language code, in BCP 47 format (eg &quot;en-US&quot;).
161 }</pre>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700162</div>
163
164</body></html>