google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
62 lines (61 loc) • 2.75 kB
TypeScript
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import type { MutateAdGroupCriterionLabelsResponse } from "./ad_group_criterion_label_service";
import type { MutateAdGroupCriterionLabelsRequest } from "./ad_group_criterion_label_service";
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
/**
* Service to manage labels on ad group criteria.
*
* @generated from protobuf service google.ads.googleads.v11.services.AdGroupCriterionLabelService
*/
export interface IAdGroupCriterionLabelServiceClient {
/**
* Creates and removes ad group criterion labels.
* Operation statuses are returned.
*
* List of thrown errors:
* [AuthenticationError]()
* [AuthorizationError]()
* [DatabaseError]()
* [FieldError]()
* [HeaderError]()
* [InternalError]()
* [QuotaError]()
* [RequestError]()
*
* @generated from protobuf rpc: MutateAdGroupCriterionLabels(google.ads.googleads.v11.services.MutateAdGroupCriterionLabelsRequest) returns (google.ads.googleads.v11.services.MutateAdGroupCriterionLabelsResponse);
*/
mutateAdGroupCriterionLabels(input: MutateAdGroupCriterionLabelsRequest, options?: RpcOptions): UnaryCall<MutateAdGroupCriterionLabelsRequest, MutateAdGroupCriterionLabelsResponse>;
}
/**
* Service to manage labels on ad group criteria.
*
* @generated from protobuf service google.ads.googleads.v11.services.AdGroupCriterionLabelService
*/
export declare class AdGroupCriterionLabelServiceClient implements IAdGroupCriterionLabelServiceClient, 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 and removes ad group criterion labels.
* Operation statuses are returned.
*
* List of thrown errors:
* [AuthenticationError]()
* [AuthorizationError]()
* [DatabaseError]()
* [FieldError]()
* [HeaderError]()
* [InternalError]()
* [QuotaError]()
* [RequestError]()
*
* @generated from protobuf rpc: MutateAdGroupCriterionLabels(google.ads.googleads.v11.services.MutateAdGroupCriterionLabelsRequest) returns (google.ads.googleads.v11.services.MutateAdGroupCriterionLabelsResponse);
*/
mutateAdGroupCriterionLabels(input: MutateAdGroupCriterionLabelsRequest, options?: RpcOptions): UnaryCall<MutateAdGroupCriterionLabelsRequest, MutateAdGroupCriterionLabelsResponse>;
}