google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
92 lines (91 loc) • 3.57 kB
TypeScript
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import type { MutateAdGroupBidModifiersResponse } from "./ad_group_bid_modifier_service";
import type { MutateAdGroupBidModifiersRequest } from "./ad_group_bid_modifier_service";
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
/**
* Service to manage ad group bid modifiers.
*
* @generated from protobuf service google.ads.googleads.v11.services.AdGroupBidModifierService
*/
export interface IAdGroupBidModifierServiceClient {
/**
* Creates, updates, or removes ad group bid modifiers.
* Operation statuses are returned.
*
* List of thrown errors:
* [AdGroupBidModifierError]()
* [AuthenticationError]()
* [AuthorizationError]()
* [ContextError]()
* [CriterionError]()
* [DatabaseError]()
* [DistinctError]()
* [FieldError]()
* [FieldMaskError]()
* [HeaderError]()
* [IdError]()
* [InternalError]()
* [MutateError]()
* [NewResourceCreationError]()
* [NotEmptyError]()
* [OperatorError]()
* [QuotaError]()
* [RangeError]()
* [RequestError]()
* [ResourceCountLimitExceededError]()
* [SizeLimitError]()
* [StringFormatError]()
* [StringLengthError]()
*
* @generated from protobuf rpc: MutateAdGroupBidModifiers(google.ads.googleads.v11.services.MutateAdGroupBidModifiersRequest) returns (google.ads.googleads.v11.services.MutateAdGroupBidModifiersResponse);
*/
mutateAdGroupBidModifiers(input: MutateAdGroupBidModifiersRequest, options?: RpcOptions): UnaryCall<MutateAdGroupBidModifiersRequest, MutateAdGroupBidModifiersResponse>;
}
/**
* Service to manage ad group bid modifiers.
*
* @generated from protobuf service google.ads.googleads.v11.services.AdGroupBidModifierService
*/
export declare class AdGroupBidModifierServiceClient implements IAdGroupBidModifierServiceClient, 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 bid modifiers.
* Operation statuses are returned.
*
* List of thrown errors:
* [AdGroupBidModifierError]()
* [AuthenticationError]()
* [AuthorizationError]()
* [ContextError]()
* [CriterionError]()
* [DatabaseError]()
* [DistinctError]()
* [FieldError]()
* [FieldMaskError]()
* [HeaderError]()
* [IdError]()
* [InternalError]()
* [MutateError]()
* [NewResourceCreationError]()
* [NotEmptyError]()
* [OperatorError]()
* [QuotaError]()
* [RangeError]()
* [RequestError]()
* [ResourceCountLimitExceededError]()
* [SizeLimitError]()
* [StringFormatError]()
* [StringLengthError]()
*
* @generated from protobuf rpc: MutateAdGroupBidModifiers(google.ads.googleads.v11.services.MutateAdGroupBidModifiersRequest) returns (google.ads.googleads.v11.services.MutateAdGroupBidModifiersResponse);
*/
mutateAdGroupBidModifiers(input: MutateAdGroupBidModifiersRequest, options?: RpcOptions): UnaryCall<MutateAdGroupBidModifiersRequest, MutateAdGroupBidModifiersResponse>;
}