@denizelderenbos/google-ads-api
Version:
Google Ads API Client Library for Node.js
17 lines (16 loc) • 628 B
TypeScript
import { Customer } from './customer';
import { CustomerOptions } from './types';
import { Hooks } from './hooks';
import { services } from './protos';
export interface ClientOptions {
client_id: string;
client_secret: string;
developer_token: string;
disable_parsing?: boolean;
}
export declare class Client {
private readonly options;
constructor(options: ClientOptions);
Customer(customerOptions: CustomerOptions, hooks?: Hooks): Customer;
listAccessibleCustomers(refreshToken: string, loginCustomerId?: string, linkedCustomerId?: string): Promise<services.ListAccessibleCustomersResponse>;
}