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.

40 lines (39 loc) 2.13 kB
import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import type { MutateSmartCampaignSettingsResponse } from "./smart_campaign_setting_service"; import type { MutateSmartCampaignSettingsRequest } from "./smart_campaign_setting_service"; import type { UnaryCall } from "@protobuf-ts/runtime-rpc"; import type { RpcOptions } from "@protobuf-ts/runtime-rpc"; /** * Service to manage Smart campaign settings. * * @generated from protobuf service google.ads.googleads.v11.services.SmartCampaignSettingService */ export interface ISmartCampaignSettingServiceClient { /** * Updates Smart campaign settings for campaigns. * * @generated from protobuf rpc: MutateSmartCampaignSettings(google.ads.googleads.v11.services.MutateSmartCampaignSettingsRequest) returns (google.ads.googleads.v11.services.MutateSmartCampaignSettingsResponse); */ mutateSmartCampaignSettings(input: MutateSmartCampaignSettingsRequest, options?: RpcOptions): UnaryCall<MutateSmartCampaignSettingsRequest, MutateSmartCampaignSettingsResponse>; } /** * Service to manage Smart campaign settings. * * @generated from protobuf service google.ads.googleads.v11.services.SmartCampaignSettingService */ export declare class SmartCampaignSettingServiceClient implements ISmartCampaignSettingServiceClient, 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); /** * Updates Smart campaign settings for campaigns. * * @generated from protobuf rpc: MutateSmartCampaignSettings(google.ads.googleads.v11.services.MutateSmartCampaignSettingsRequest) returns (google.ads.googleads.v11.services.MutateSmartCampaignSettingsResponse); */ mutateSmartCampaignSettings(input: MutateSmartCampaignSettingsRequest, options?: RpcOptions): UnaryCall<MutateSmartCampaignSettingsRequest, MutateSmartCampaignSettingsResponse>; }