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 income range view. * * @generated from protobuf message google.ads.googleads.v11.resources.IncomeRangeView */ export interface IncomeRangeView { /** * Output only. The resource name of the income range view. * Income range view resource names have the form: * * `customers/{customer_id}/incomeRangeViews/{ad_group_id}~{criterion_id}` * * @generated from protobuf field: string resource_name = 1; */ resourceName: string; } declare class IncomeRangeView$Type extends MessageType { constructor(); create(value?: PartialMessage): IncomeRangeView; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: IncomeRangeView): IncomeRangeView; internalBinaryWrite(message: IncomeRangeView, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.resources.IncomeRangeView */ export declare const IncomeRangeView: IncomeRangeView$Type; export {};