1<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="androidmanagement_v1.html">Android Management API</a> . <a href="androidmanagement_v1.enterprises.html">enterprises</a> . <a href="androidmanagement_v1.enterprises.applications.html">applications</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78  <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
81  <code><a href="#get">get(name, languageCode=None, x__xgafv=None)</a></code></p>
82<p class="firstline">Gets info about an application.</p>
83<h3>Method Details</h3>
84<div class="method">
85    <code class="details" id="close">close()</code>
86  <pre>Close httplib2 connections.</pre>
87</div>
88
89<div class="method">
90    <code class="details" id="get">get(name, languageCode=None, x__xgafv=None)</code>
91  <pre>Gets info about an application.
92
93Args:
94  name: string, The name of the application in the form enterprises/{enterpriseId}/applications/{package_name}. (required)
95  languageCode: string, The preferred language for localized application info, as a BCP47 tag (e.g. &quot;en-US&quot;, &quot;de&quot;). If not specified the default language of the application will be used.
96  x__xgafv: string, V1 error format.
97    Allowed values
98      1 - v1 error format
99      2 - v2 error format
100
101Returns:
102  An object of the form:
103
104    { # Information about an app.
105  &quot;appTracks&quot;: [ # Application tracks visible to the enterprise.
106    { # Id to name association of a app track.
107      &quot;trackAlias&quot;: &quot;A String&quot;, # The track name associated with the trackId, set in the Play Console. The name is modifiable from Play Console.
108      &quot;trackId&quot;: &quot;A String&quot;, # The unmodifiable unique track identifier, taken from the releaseTrackId in the URL of the Play Console page that displays the app’s track information.
109    },
110  ],
111  &quot;managedProperties&quot;: [ # The set of managed properties available to be pre-configured for the app.
112    { # Managed property.
113      &quot;defaultValue&quot;: &quot;&quot;, # The default value of the property. BUNDLE_ARRAY properties don&#x27;t have a default value.
114      &quot;description&quot;: &quot;A String&quot;, # A longer description of the property, providing more detail of what it affects. Localized.
115      &quot;entries&quot;: [ # For CHOICE or MULTISELECT properties, the list of possible entries.
116        { # An entry of a managed property.
117          &quot;name&quot;: &quot;A String&quot;, # The human-readable name of the value. Localized.
118          &quot;value&quot;: &quot;A String&quot;, # The machine-readable value of the entry, which should be used in the configuration. Not localized.
119        },
120      ],
121      &quot;key&quot;: &quot;A String&quot;, # The unique key that the app uses to identify the property, e.g. &quot;com.google.android.gm.fieldname&quot;.
122      &quot;nestedProperties&quot;: [ # For BUNDLE_ARRAY properties, the list of nested properties. A BUNDLE_ARRAY property is at most two levels deep.
123        # Object with schema name: ManagedProperty
124      ],
125      &quot;title&quot;: &quot;A String&quot;, # The name of the property. Localized.
126      &quot;type&quot;: &quot;A String&quot;, # The type of the property.
127    },
128  ],
129  &quot;name&quot;: &quot;A String&quot;, # The name of the app in the form enterprises/{enterpriseId}/applications/{package_name}.
130  &quot;permissions&quot;: [ # The permissions required by the app.
131    { # A permission required by the app.
132      &quot;description&quot;: &quot;A String&quot;, # A longer description of the permission, providing more detail on what it affects. Localized.
133      &quot;name&quot;: &quot;A String&quot;, # The name of the permission. Localized.
134      &quot;permissionId&quot;: &quot;A String&quot;, # An opaque string uniquely identifying the permission. Not localized.
135    },
136  ],
137  &quot;title&quot;: &quot;A String&quot;, # The title of the app. Localized.
138}</pre>
139</div>
140
141</body></html>