Home | History | Annotate | Download | only in dyn
      1 <html><body>
      2 <style>
      3 
      4 body, 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 
     15 body {
     16   font-size: 13px;
     17   padding: 1em;
     18 }
     19 
     20 h1 {
     21   font-size: 26px;
     22   margin-bottom: 1em;
     23 }
     24 
     25 h2 {
     26   font-size: 24px;
     27   margin-bottom: 1em;
     28 }
     29 
     30 h3 {
     31   font-size: 20px;
     32   margin-bottom: 1em;
     33   margin-top: 1em;
     34 }
     35 
     36 pre, code {
     37   line-height: 1.5;
     38   font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
     39 }
     40 
     41 pre {
     42   margin-top: 0.5em;
     43 }
     44 
     45 h1, h2, h3, p {
     46   font-family: Arial, sans serif;
     47 }
     48 
     49 h1, 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_v2.html">Google Play Developer API</a> . <a href="androidpublisher_v2.edits.html">edits</a> . <a href="androidpublisher_v2.edits.apklistings.html">apklistings</a></h1>
     76 <h2>Instance Methods</h2>
     77 <p class="toc_element">
     78   <code><a href="#delete">delete(packageName, editId, apkVersionCode, language)</a></code></p>
     79 <p class="firstline">Deletes the APK-specific localized listing for a specified APK and language code.</p>
     80 <p class="toc_element">
     81   <code><a href="#deleteall">deleteall(packageName, editId, apkVersionCode)</a></code></p>
     82 <p class="firstline">Deletes all the APK-specific localized listings for a specified APK.</p>
     83 <p class="toc_element">
     84   <code><a href="#get">get(packageName, editId, apkVersionCode, language)</a></code></p>
     85 <p class="firstline">Fetches the APK-specific localized listing for a specified APK and language code.</p>
     86 <p class="toc_element">
     87   <code><a href="#list">list(packageName, editId, apkVersionCode)</a></code></p>
     88 <p class="firstline">Lists all the APK-specific localized listings for a specified APK.</p>
     89 <p class="toc_element">
     90   <code><a href="#patch">patch(packageName, editId, apkVersionCode, language, body)</a></code></p>
     91 <p class="firstline">Updates or creates the APK-specific localized listing for a specified APK and language code. This method supports patch semantics.</p>
     92 <p class="toc_element">
     93   <code><a href="#update">update(packageName, editId, apkVersionCode, language, body)</a></code></p>
     94 <p class="firstline">Updates or creates the APK-specific localized listing for a specified APK and language code.</p>
     95 <h3>Method Details</h3>
     96 <div class="method">
     97     <code class="details" id="delete">delete(packageName, editId, apkVersionCode, language)</code>
     98   <pre>Deletes the APK-specific localized listing for a specified APK and language code.
     99 
    100 Args:
    101   packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required)
    102   editId: string, Unique identifier for this edit. (required)
    103   apkVersionCode: integer, The APK version code whose APK-specific listings should be read or modified. (required)
    104   language: string, The language code (a BCP-47 language tag) of the APK-specific localized listing to read or modify. For example, to select Austrian German, pass "de-AT". (required)
    105 </pre>
    106 </div>
    107 
    108 <div class="method">
    109     <code class="details" id="deleteall">deleteall(packageName, editId, apkVersionCode)</code>
    110   <pre>Deletes all the APK-specific localized listings for a specified APK.
    111 
    112 Args:
    113   packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required)
    114   editId: string, Unique identifier for this edit. (required)
    115   apkVersionCode: integer, The APK version code whose APK-specific listings should be read or modified. (required)
    116 </pre>
    117 </div>
    118 
    119 <div class="method">
    120     <code class="details" id="get">get(packageName, editId, apkVersionCode, language)</code>
    121   <pre>Fetches the APK-specific localized listing for a specified APK and language code.
    122 
    123 Args:
    124   packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required)
    125   editId: string, Unique identifier for this edit. (required)
    126   apkVersionCode: integer, The APK version code whose APK-specific listings should be read or modified. (required)
    127   language: string, The language code (a BCP-47 language tag) of the APK-specific localized listing to read or modify. For example, to select Austrian German, pass "de-AT". (required)
    128 
    129 Returns:
    130   An object of the form:
    131 
    132     {
    133     "recentChanges": "A String", # Describe what's new in your APK.
    134     "language": "A String", # The language code, in BCP 47 format (eg "en-US").
    135   }</pre>
    136 </div>
    137 
    138 <div class="method">
    139     <code class="details" id="list">list(packageName, editId, apkVersionCode)</code>
    140   <pre>Lists all the APK-specific localized listings for a specified APK.
    141 
    142 Args:
    143   packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required)
    144   editId: string, Unique identifier for this edit. (required)
    145   apkVersionCode: integer, The APK version code whose APK-specific listings should be read or modified. (required)
    146 
    147 Returns:
    148   An object of the form:
    149 
    150     {
    151     "kind": "androidpublisher#apkListingsListResponse", # Identifies what kind of resource this is. Value: the fixed string "androidpublisher#apkListingsListResponse".
    152     "listings": [
    153       {
    154         "recentChanges": "A String", # Describe what's new in your APK.
    155         "language": "A String", # The language code, in BCP 47 format (eg "en-US").
    156       },
    157     ],
    158   }</pre>
    159 </div>
    160 
    161 <div class="method">
    162     <code class="details" id="patch">patch(packageName, editId, apkVersionCode, language, body)</code>
    163   <pre>Updates or creates the APK-specific localized listing for a specified APK and language code. This method supports patch semantics.
    164 
    165 Args:
    166   packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required)
    167   editId: string, Unique identifier for this edit. (required)
    168   apkVersionCode: integer, The APK version code whose APK-specific listings should be read or modified. (required)
    169   language: string, The language code (a BCP-47 language tag) of the APK-specific localized listing to read or modify. For example, to select Austrian German, pass "de-AT". (required)
    170   body: object, The request body. (required)
    171     The object takes the form of:
    172 
    173 {
    174   "recentChanges": "A String", # Describe what's new in your APK.
    175   "language": "A String", # The language code, in BCP 47 format (eg "en-US").
    176 }
    177 
    178 
    179 Returns:
    180   An object of the form:
    181 
    182     {
    183     "recentChanges": "A String", # Describe what's new in your APK.
    184     "language": "A String", # The language code, in BCP 47 format (eg "en-US").
    185   }</pre>
    186 </div>
    187 
    188 <div class="method">
    189     <code class="details" id="update">update(packageName, editId, apkVersionCode, language, body)</code>
    190   <pre>Updates or creates the APK-specific localized listing for a specified APK and language code.
    191 
    192 Args:
    193   packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required)
    194   editId: string, Unique identifier for this edit. (required)
    195   apkVersionCode: integer, The APK version code whose APK-specific listings should be read or modified. (required)
    196   language: string, The language code (a BCP-47 language tag) of the APK-specific localized listing to read or modify. For example, to select Austrian German, pass "de-AT". (required)
    197   body: object, The request body. (required)
    198     The object takes the form of:
    199 
    200 {
    201   "recentChanges": "A String", # Describe what's new in your APK.
    202   "language": "A String", # The language code, in BCP 47 format (eg "en-US").
    203 }
    204 
    205 
    206 Returns:
    207   An object of the form:
    208 
    209     {
    210     "recentChanges": "A String", # Describe what's new in your APK.
    211     "language": "A String", # The language code, in BCP 47 format (eg "en-US").
    212   }</pre>
    213 </div>
    214 
    215 </body></html>