create method

Future<AssignedInventorySource> create(
  1. AssignedInventorySource request,
  2. String inventorySourceGroupId, {
  3. String? advertiserId,
  4. String? partnerId,
  5. String? $fields,
})

Creates an assignment between an inventory source and an inventory source group.

request - The metadata request object.

Request parameters:

inventorySourceGroupId - Required. The ID of the inventory source group to which the assignment will be assigned. Value must have pattern ^\[^/\]+$.

advertiserId - The ID of the advertiser that owns the parent inventory source group. The parent partner will not have access to this assigned inventory source.

partnerId - The ID of the partner that owns the parent inventory source group. Only this partner will have write access to this assigned inventory source.

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

Completes with a AssignedInventorySource.

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<AssignedInventorySource> create(
  AssignedInventorySource request,
  core.String inventorySourceGroupId, {
  core.String? advertiserId,
  core.String? partnerId,
  core.String? $fields,
}) async {
  final body_ = convert.json.encode(request);
  final queryParams_ = <core.String, core.List<core.String>>{
    if (advertiserId != null) 'advertiserId': [advertiserId],
    if (partnerId != null) 'partnerId': [partnerId],
    if ($fields != null) 'fields': [$fields],
  };

  final url_ = 'v3/inventorySourceGroups/' +
      core.Uri.encodeFull('$inventorySourceGroupId') +
      '/assignedInventorySources';

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