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.18 kB
TypeScript
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import type { MutateCustomizerAttributesResponse } from "./customizer_attribute_service";
import type { MutateCustomizerAttributesRequest } from "./customizer_attribute_service";
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
/**
* Service to manage customizer attribute
*
* @generated from protobuf service google.ads.googleads.v11.services.CustomizerAttributeService
*/
export interface ICustomizerAttributeServiceClient {
/**
* Creates, updates or removes customizer attributes. Operation statuses are
* returned.
*
* @generated from protobuf rpc: MutateCustomizerAttributes(google.ads.googleads.v11.services.MutateCustomizerAttributesRequest) returns (google.ads.googleads.v11.services.MutateCustomizerAttributesResponse);
*/
mutateCustomizerAttributes(input: MutateCustomizerAttributesRequest, options?: RpcOptions): UnaryCall<MutateCustomizerAttributesRequest, MutateCustomizerAttributesResponse>;
}
/**
* Service to manage customizer attribute
*
* @generated from protobuf service google.ads.googleads.v11.services.CustomizerAttributeService
*/
export declare class CustomizerAttributeServiceClient implements ICustomizerAttributeServiceClient, 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 customizer attributes. Operation statuses are
* returned.
*
* @generated from protobuf rpc: MutateCustomizerAttributes(google.ads.googleads.v11.services.MutateCustomizerAttributesRequest) returns (google.ads.googleads.v11.services.MutateCustomizerAttributesResponse);
*/
mutateCustomizerAttributes(input: MutateCustomizerAttributesRequest, options?: RpcOptions): UnaryCall<MutateCustomizerAttributesRequest, MutateCustomizerAttributesResponse>;
}