google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
90 lines (89 loc) • 3.27 kB
TypeScript
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import type { MutateAdGroupFeedsResponse } from "./ad_group_feed_service";
import type { MutateAdGroupFeedsRequest } from "./ad_group_feed_service";
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
/**
* Service to manage ad group feeds.
*
* @generated from protobuf service google.ads.googleads.v11.services.AdGroupFeedService
*/
export interface IAdGroupFeedServiceClient {
/**
* Creates, updates, or removes ad group feeds. Operation statuses are
* returned.
*
* List of thrown errors:
* [AdGroupFeedError]()
* [AuthenticationError]()
* [AuthorizationError]()
* [CollectionSizeError]()
* [DatabaseError]()
* [DistinctError]()
* [FieldError]()
* [FunctionError]()
* [FunctionParsingError]()
* [HeaderError]()
* [IdError]()
* [InternalError]()
* [MutateError]()
* [NotEmptyError]()
* [NullError]()
* [OperatorError]()
* [QuotaError]()
* [RangeError]()
* [RequestError]()
* [SizeLimitError]()
* [StringFormatError]()
* [StringLengthError]()
*
* @generated from protobuf rpc: MutateAdGroupFeeds(google.ads.googleads.v11.services.MutateAdGroupFeedsRequest) returns (google.ads.googleads.v11.services.MutateAdGroupFeedsResponse);
*/
mutateAdGroupFeeds(input: MutateAdGroupFeedsRequest, options?: RpcOptions): UnaryCall<MutateAdGroupFeedsRequest, MutateAdGroupFeedsResponse>;
}
/**
* Service to manage ad group feeds.
*
* @generated from protobuf service google.ads.googleads.v11.services.AdGroupFeedService
*/
export declare class AdGroupFeedServiceClient implements IAdGroupFeedServiceClient, 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 feeds. Operation statuses are
* returned.
*
* List of thrown errors:
* [AdGroupFeedError]()
* [AuthenticationError]()
* [AuthorizationError]()
* [CollectionSizeError]()
* [DatabaseError]()
* [DistinctError]()
* [FieldError]()
* [FunctionError]()
* [FunctionParsingError]()
* [HeaderError]()
* [IdError]()
* [InternalError]()
* [MutateError]()
* [NotEmptyError]()
* [NullError]()
* [OperatorError]()
* [QuotaError]()
* [RangeError]()
* [RequestError]()
* [SizeLimitError]()
* [StringFormatError]()
* [StringLengthError]()
*
* @generated from protobuf rpc: MutateAdGroupFeeds(google.ads.googleads.v11.services.MutateAdGroupFeedsRequest) returns (google.ads.googleads.v11.services.MutateAdGroupFeedsResponse);
*/
mutateAdGroupFeeds(input: MutateAdGroupFeedsRequest, options?: RpcOptions): UnaryCall<MutateAdGroupFeedsRequest, MutateAdGroupFeedsResponse>;
}