帳戶

擷取目前帳戶的詳細資料

function getCurrentAccountDetails() {   const currentAccount = AdsApp.currentAccount();   console.log(`Customer ID: ${currentAccount.getCustomerId()}`);   console.log(`Currency Code: ${currentAccount.getCurrencyCode()}`);   console.log(`Timezone: ${currentAccount.getTimeZone()}`);   const stats = currentAccount.getStatsFor('LAST_MONTH');   console.log(`${stats.getClicks()} clicks last month`);   console.log(`${stats.getImpressions()} impressions last month`);   return stats; }