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