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.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">
     81   <code><a href="#patch">patch(packageName, editId, body)</a></code></p>
     82 <p class="firstline">Updates app details for this edit. This method supports patch semantics.</p>
     83 <p class="toc_element">
     84   <code><a href="#update">update(packageName, editId, body)</a></code></p>
     85 <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 
     91 Args:
     92   packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required)
     93   editId: string, Unique identifier for this edit. (required)
     94 
     95 Returns:
     96   An object of the form:
     97 
     98     {
     99       "contactEmail": "A String", # The user-visible support email for this app.
    100       "contactPhone": "A String", # The user-visible support telephone number for this app.
    101       "contactWebsite": "A String", # The user-visible website for this app.
    102       "defaultLanguage": "A String", # Default language code, in BCP 47 format (eg "en-US").
    103     }</pre>
    104 </div>
    105 
    106 <div class="method">
    107     <code class="details" id="patch">patch(packageName, editId, body)</code>
    108   <pre>Updates app details for this edit. This method supports patch semantics.
    109 
    110 Args:
    111   packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required)
    112   editId: string, Unique identifier for this edit. (required)
    113   body: object, The request body. (required)
    114     The object takes the form of:
    115 
    116 {
    117     "contactEmail": "A String", # The user-visible support email for this app.
    118     "contactPhone": "A String", # The user-visible support telephone number for this app.
    119     "contactWebsite": "A String", # The user-visible website for this app.
    120     "defaultLanguage": "A String", # Default language code, in BCP 47 format (eg "en-US").
    121   }
    122 
    123 
    124 Returns:
    125   An object of the form:
    126 
    127     {
    128       "contactEmail": "A String", # The user-visible support email for this app.
    129       "contactPhone": "A String", # The user-visible support telephone number for this app.
    130       "contactWebsite": "A String", # The user-visible website for this app.
    131       "defaultLanguage": "A String", # Default language code, in BCP 47 format (eg "en-US").
    132     }</pre>
    133 </div>
    134 
    135 <div class="method">
    136     <code class="details" id="update">update(packageName, editId, body)</code>
    137   <pre>Updates app details for this edit.
    138 
    139 Args:
    140   packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required)
    141   editId: string, Unique identifier for this edit. (required)
    142   body: object, The request body. (required)
    143     The object takes the form of:
    144 
    145 {
    146     "contactEmail": "A String", # The user-visible support email for this app.
    147     "contactPhone": "A String", # The user-visible support telephone number for this app.
    148     "contactWebsite": "A String", # The user-visible website for this app.
    149     "defaultLanguage": "A String", # Default language code, in BCP 47 format (eg "en-US").
    150   }
    151 
    152 
    153 Returns:
    154   An object of the form:
    155 
    156     {
    157       "contactEmail": "A String", # The user-visible support email for this app.
    158       "contactPhone": "A String", # The user-visible support telephone number for this app.
    159       "contactWebsite": "A String", # The user-visible website for this app.
    160       "defaultLanguage": "A String", # Default language code, in BCP 47 format (eg "en-US").
    161     }</pre>
    162 </div>
    163 
    164 </body></html>