google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
68 lines (67 loc) • 2.87 kB
TypeScript
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import type { MutateCustomerClientLinkResponse } from "./customer_client_link_service";
import type { MutateCustomerClientLinkRequest } from "./customer_client_link_service";
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
/**
* Service to manage customer client links.
*
* @generated from protobuf service google.ads.googleads.v11.services.CustomerClientLinkService
*/
export interface ICustomerClientLinkServiceClient {
/**
* Creates or updates a customer client link. Operation statuses are returned.
*
* List of thrown errors:
* [AuthenticationError]()
* [AuthorizationError]()
* [DatabaseError]()
* [FieldError]()
* [FieldMaskError]()
* [HeaderError]()
* [InternalError]()
* [ManagerLinkError]()
* [MutateError]()
* [NewResourceCreationError]()
* [QuotaError]()
* [RequestError]()
*
* @generated from protobuf rpc: MutateCustomerClientLink(google.ads.googleads.v11.services.MutateCustomerClientLinkRequest) returns (google.ads.googleads.v11.services.MutateCustomerClientLinkResponse);
*/
mutateCustomerClientLink(input: MutateCustomerClientLinkRequest, options?: RpcOptions): UnaryCall<MutateCustomerClientLinkRequest, MutateCustomerClientLinkResponse>;
}
/**
* Service to manage customer client links.
*
* @generated from protobuf service google.ads.googleads.v11.services.CustomerClientLinkService
*/
export declare class CustomerClientLinkServiceClient implements ICustomerClientLinkServiceClient, 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 or updates a customer client link. Operation statuses are returned.
*
* List of thrown errors:
* [AuthenticationError]()
* [AuthorizationError]()
* [DatabaseError]()
* [FieldError]()
* [FieldMaskError]()
* [HeaderError]()
* [InternalError]()
* [ManagerLinkError]()
* [MutateError]()
* [NewResourceCreationError]()
* [QuotaError]()
* [RequestError]()
*
* @generated from protobuf rpc: MutateCustomerClientLink(google.ads.googleads.v11.services.MutateCustomerClientLinkRequest) returns (google.ads.googleads.v11.services.MutateCustomerClientLinkResponse);
*/
mutateCustomerClientLink(input: MutateCustomerClientLinkRequest, options?: RpcOptions): UnaryCall<MutateCustomerClientLinkRequest, MutateCustomerClientLinkResponse>;
}