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.16 kB
import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import type { MutateCustomerCustomizersResponse } from "./customer_customizer_service"; import type { MutateCustomerCustomizersRequest } from "./customer_customizer_service"; import type { UnaryCall } from "@protobuf-ts/runtime-rpc"; import type { RpcOptions } from "@protobuf-ts/runtime-rpc"; /** * Service to manage customer customizer * * @generated from protobuf service google.ads.googleads.v11.services.CustomerCustomizerService */ export interface ICustomerCustomizerServiceClient { /** * Creates, updates or removes customer customizers. Operation statuses are * returned. * * @generated from protobuf rpc: MutateCustomerCustomizers(google.ads.googleads.v11.services.MutateCustomerCustomizersRequest) returns (google.ads.googleads.v11.services.MutateCustomerCustomizersResponse); */ mutateCustomerCustomizers(input: MutateCustomerCustomizersRequest, options?: RpcOptions): UnaryCall<MutateCustomerCustomizersRequest, MutateCustomerCustomizersResponse>; } /** * Service to manage customer customizer * * @generated from protobuf service google.ads.googleads.v11.services.CustomerCustomizerService */ export declare class CustomerCustomizerServiceClient implements ICustomerCustomizerServiceClient, 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 customer customizers. Operation statuses are * returned. * * @generated from protobuf rpc: MutateCustomerCustomizers(google.ads.googleads.v11.services.MutateCustomerCustomizersRequest) returns (google.ads.googleads.v11.services.MutateCustomerCustomizersResponse); */ mutateCustomerCustomizers(input: MutateCustomerCustomizersRequest, options?: RpcOptions): UnaryCall<MutateCustomerCustomizersRequest, MutateCustomerCustomizersResponse>; }