google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
34 lines (33 loc) • 1.38 kB
TypeScript
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
import type { IBinaryWriter } from "@protobuf-ts/runtime";
import type { BinaryReadOptions } from "@protobuf-ts/runtime";
import type { IBinaryReader } from "@protobuf-ts/runtime";
import type { PartialMessage } from "@protobuf-ts/runtime";
import { MessageType } from "@protobuf-ts/runtime";
/**
* An age range view.
*
* @generated from protobuf message google.ads.googleads.v11.resources.AgeRangeView
*/
export interface AgeRangeView {
/**
* Output only. The resource name of the age range view.
* Age range view resource names have the form:
*
* `customers/{customer_id}/ageRangeViews/{ad_group_id}~{criterion_id}`
*
* @generated from protobuf field: string resource_name = 1;
*/
resourceName: string;
}
declare class AgeRangeView$Type extends MessageType<AgeRangeView> {
constructor();
create(value?: PartialMessage<AgeRangeView>): AgeRangeView;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AgeRangeView): AgeRangeView;
internalBinaryWrite(message: AgeRangeView, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.resources.AgeRangeView
*/
export declare const AgeRangeView: AgeRangeView$Type;
export {};