get method

Future<Product> get(
  1. String enterpriseId,
  2. String productId, {
  3. String? language,
  4. String? $fields,
})

Retrieves details of a product for display to an enterprise admin.

Request parameters:

enterpriseId - The ID of the enterprise.

productId - The ID of the product, e.g. "app:com.google.android.gm".

language - The BCP47 tag for the user's preferred language (e.g. "en-US", "de").

$fields - Selector specifying which fields to include in a partial response.

Completes with a Product.

Completes with a commons.ApiRequestError if the API endpoint returned an error.

If the used http.Client completes with an error when making a REST call, this method will complete with the same error.

Implementation

async.Future<Product> get(
  core.String enterpriseId,
  core.String productId, {
  core.String? language,
  core.String? $fields,
}) async {
  final queryParams_ = <core.String, core.List<core.String>>{
    if (language != null) 'language': [language],
    if ($fields != null) 'fields': [$fields],
  };

  final url_ = 'androidenterprise/v1/enterprises/' +
      commons.escapeVariable('$enterpriseId') +
      '/products/' +
      commons.escapeVariable('$productId');

  final response_ = await _requester.request(
    url_,
    'GET',
    queryParams: queryParams_,
  );
  return Product.fromJson(response_ as core.Map<core.String, core.dynamic>);
}