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.38 kB
TypeScript
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import type { MutateAdGroupCriterionCustomizersResponse } from "./ad_group_criterion_customizer_service";
import type { MutateAdGroupCriterionCustomizersRequest } from "./ad_group_criterion_customizer_service";
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
/**
* Service to manage ad group criterion customizer
*
* @generated from protobuf service google.ads.googleads.v11.services.AdGroupCriterionCustomizerService
*/
export interface IAdGroupCriterionCustomizerServiceClient {
/**
* Creates, updates or removes ad group criterion customizers. Operation
* statuses are returned.
*
* @generated from protobuf rpc: MutateAdGroupCriterionCustomizers(google.ads.googleads.v11.services.MutateAdGroupCriterionCustomizersRequest) returns (google.ads.googleads.v11.services.MutateAdGroupCriterionCustomizersResponse);
*/
mutateAdGroupCriterionCustomizers(input: MutateAdGroupCriterionCustomizersRequest, options?: RpcOptions): UnaryCall<MutateAdGroupCriterionCustomizersRequest, MutateAdGroupCriterionCustomizersResponse>;
}
/**
* Service to manage ad group criterion customizer
*
* @generated from protobuf service google.ads.googleads.v11.services.AdGroupCriterionCustomizerService
*/
export declare class AdGroupCriterionCustomizerServiceClient implements IAdGroupCriterionCustomizerServiceClient, 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 criterion customizers. Operation
* statuses are returned.
*
* @generated from protobuf rpc: MutateAdGroupCriterionCustomizers(google.ads.googleads.v11.services.MutateAdGroupCriterionCustomizersRequest) returns (google.ads.googleads.v11.services.MutateAdGroupCriterionCustomizersResponse);
*/
mutateAdGroupCriterionCustomizers(input: MutateAdGroupCriterionCustomizersRequest, options?: RpcOptions): UnaryCall<MutateAdGroupCriterionCustomizersRequest, MutateAdGroupCriterionCustomizersResponse>;
}