UNPKG

google-ads-api-client

Version:

A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.

42 lines (41 loc) 2.13 kB
import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import type { MutateAdGroupCustomizersResponse } from "./ad_group_customizer_service"; import type { MutateAdGroupCustomizersRequest } from "./ad_group_customizer_service"; import type { UnaryCall } from "@protobuf-ts/runtime-rpc"; import type { RpcOptions } from "@protobuf-ts/runtime-rpc"; /** * Service to manage ad group customizer * * @generated from protobuf service google.ads.googleads.v11.services.AdGroupCustomizerService */ export interface IAdGroupCustomizerServiceClient { /** * Creates, updates or removes ad group customizers. Operation statuses are * returned. * * @generated from protobuf rpc: MutateAdGroupCustomizers(google.ads.googleads.v11.services.MutateAdGroupCustomizersRequest) returns (google.ads.googleads.v11.services.MutateAdGroupCustomizersResponse); */ mutateAdGroupCustomizers(input: MutateAdGroupCustomizersRequest, options?: RpcOptions): UnaryCall<MutateAdGroupCustomizersRequest, MutateAdGroupCustomizersResponse>; } /** * Service to manage ad group customizer * * @generated from protobuf service google.ads.googleads.v11.services.AdGroupCustomizerService */ export declare class AdGroupCustomizerServiceClient implements IAdGroupCustomizerServiceClient, ServiceInfo { private readonly _transport; typeName: string; methods: import("@protobuf-ts/runtime-rpc").MethodInfo<any, any>[]; options: { [extensionName: string]: import("@protobuf-ts/runtime").JsonValue; }; constructor(_transport: RpcTransport); /** * Creates, updates or removes ad group customizers. Operation statuses are * returned. * * @generated from protobuf rpc: MutateAdGroupCustomizers(google.ads.googleads.v11.services.MutateAdGroupCustomizersRequest) returns (google.ads.googleads.v11.services.MutateAdGroupCustomizersResponse); */ mutateAdGroupCustomizers(input: MutateAdGroupCustomizersRequest, options?: RpcOptions): UnaryCall<MutateAdGroupCustomizersRequest, MutateAdGroupCustomizersResponse>; }