@niur/google-admanager-api
Version:
Google Ad Manager API Client Library for NodeJs
14 lines • 938 B
TypeScript
import { Client } from 'soap';
import { CreativeWrapperServiceOperations } from './creativeWrapperService.interface';
import { CreativeWrapper, CreativeWrapperPage } from './creativeWrapper.type';
import { CreativeWrapperAction } from './creativeWrapper.action';
import { Statement, UpdateResult } from '../../../common/types';
export declare class CreativeWrapperService implements CreativeWrapperServiceOperations {
private _client;
constructor(client: Client);
createCreativeWrappers(creativeWrappers: CreativeWrapper[]): Promise<CreativeWrapper[]>;
getCreativeWrappersByStatement(filterStatement: Statement): Promise<CreativeWrapperPage>;
performCreativeWrapperAction(creativeWrapperAction: CreativeWrapperAction, filterStatement: Statement): Promise<UpdateResult>;
updateCreativeWrappers(creativeWrappers: CreativeWrapper[]): Promise<CreativeWrapper[]>;
}
//# sourceMappingURL=creativeWrapper.service.d.ts.map