You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/dyn/playcustomapp_v1.accounts.customApps.html
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -97,6 +97,12 @@ <h3>Method Details</h3>
97
97
98
98
{ # This resource represents a custom app.
99
99
"languageCode": "A String", # Default listing language in BCP 47 format.
100
+
"organizations": [ # Organizations to which the custom app should be made available. If the request contains any organizations, then the app will be restricted to only these organizations. To support the organization linked to the developer account, the organization ID should be provided explicitly together with other organizations. If no organizations are provided, then the app is only available to the organization linked to the developer account.
101
+
{ # Represents an organization that can access a custom app.
102
+
"organizationId": "A String", # Required. ID of the organization.
103
+
"organizationName": "A String", # Optional. A human-readable name of the organization, to help recognize the organization.
104
+
},
105
+
],
100
106
"packageName": "A String", # Output only. Package name of the created Android app. Only present in the API response.
101
107
"title": "A String", # Title for the Android app.
102
108
}
@@ -113,6 +119,12 @@ <h3>Method Details</h3>
113
119
114
120
{ # This resource represents a custom app.
115
121
"languageCode": "A String", # Default listing language in BCP 47 format.
122
+
"organizations": [ # Organizations to which the custom app should be made available. If the request contains any organizations, then the app will be restricted to only these organizations. To support the organization linked to the developer account, the organization ID should be provided explicitly together with other organizations. If no organizations are provided, then the app is only available to the organization linked to the developer account.
123
+
{ # Represents an organization that can access a custom app.
124
+
"organizationId": "A String", # Required. ID of the organization.
125
+
"organizationName": "A String", # Optional. A human-readable name of the organization, to help recognize the organization.
126
+
},
127
+
],
116
128
"packageName": "A String", # Output only. Package name of the created Android app. Only present in the API response.
117
129
"title": "A String", # Title for the Android app.
"description": "Default listing language in BCP 47 format.",
170
170
"type": "string"
171
171
},
172
+
"organizations": {
173
+
"description": "Organizations to which the custom app should be made available. If the request contains any organizations, then the app will be restricted to only these organizations. To support the organization linked to the developer account, the organization ID should be provided explicitly together with other organizations. If no organizations are provided, then the app is only available to the organization linked to the developer account.",
174
+
"items": {
175
+
"$ref": "Organization"
176
+
},
177
+
"type": "array"
178
+
},
172
179
"packageName": {
173
180
"description": "Output only. Package name of the created Android app. Only present in the API response.",
174
181
"readOnly": true,
@@ -180,6 +187,21 @@
180
187
}
181
188
},
182
189
"type": "object"
190
+
},
191
+
"Organization": {
192
+
"description": "Represents an organization that can access a custom app.",
193
+
"id": "Organization",
194
+
"properties": {
195
+
"organizationId": {
196
+
"description": "Required. ID of the organization.",
197
+
"type": "string"
198
+
},
199
+
"organizationName": {
200
+
"description": "Optional. A human-readable name of the organization, to help recognize the organization.",
0 commit comments