Get campaign data from Google Display Video 360

I am trying to get data about campaigns from dv360 like clicks, impressions, views. What have I done is getting campaign list from API. I used ‘service account’ json file to authenticate and create client. But then I cannot find out any exampe in php, how to get data for specific campaign and range date.

$advertiserId = 'my_advertiser_id_xx';
$service = new Google_Service_DisplayVideo($this->getDv360Client()); 
$campaigns = $service->advertisers_campaigns->listAdvertisersCampaigns($advertiserId)->getCampaigns();

This short code list me campaings data like campaign ID for provided advertiser ID, but now, how can I get data like clicks, immpressions etc., for date range ‘2023-07-01’ – ‘2023-07-31’ by campaign ID I got from shown code? I cant find example in google documentation.