{this is PHP but the libary should be mostly the same} :
When Calling Elements from a Stream Aka : $Stream = $Connection->searchStream
($CustomerID, $Query
);
When you Foreach The Data you usually have something like this :
foreach
($Stream->iterateAllElements
() as $Element
) {
// ALL Data out of the Object Campaign.
$campaign = $Element->GetCampaign('"');
// Name.
$name = $Element->GetName();
// Status.
$status = $Element->?????();
}
Status is unknown but, you can find that at :
(Depending on libary, But in V6 its usually) :
google-ads-php/src/Google/Ads/GoogleAds/V6/Recources/Campaign.php
Or if you have something like AdGroups
google-ads-php/src/Google/Ads/GoogleAds/V6/Recources/AdGroup.php
these 2 you can find things for Reporting data
also good to know in what dimention/Layer Data is located
aka what do you need to call to get that certain thing.
--------------------------------------
If you need ads for example
you First need to give an CustomerID With an CampaignID then The Adgroup and then the AD
and more things like that.
Picture :