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"; import { PolicyApprovalStatusEnum_PolicyApprovalStatus } from "../enums/policy_approval_status"; import { PolicyReviewStatusEnum_PolicyReviewStatus } from "../enums/policy_review_status"; import { PolicyTopicEntry } from "./policy"; /** * Contains policy summary information. * * @generated from protobuf message google.ads.googleads.v11.common.PolicySummary */ export interface PolicySummary { /** * The list of policy findings. * * @generated from protobuf field: repeated google.ads.googleads.v11.common.PolicyTopicEntry policy_topic_entries = 1; */ policyTopicEntries: PolicyTopicEntry[]; /** * Where in the review process the resource is. * * @generated from protobuf field: google.ads.googleads.v11.enums.PolicyReviewStatusEnum.PolicyReviewStatus review_status = 2; */ reviewStatus: PolicyReviewStatusEnum_PolicyReviewStatus; /** * The overall approval status, which is calculated based on * the status of its individual policy topic entries. * * @generated from protobuf field: google.ads.googleads.v11.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus approval_status = 3; */ approvalStatus: PolicyApprovalStatusEnum_PolicyApprovalStatus; } declare class PolicySummary$Type extends MessageType { constructor(); create(value?: PartialMessage): PolicySummary; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: PolicySummary): PolicySummary; internalBinaryWrite(message: PolicySummary, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.common.PolicySummary */ export declare const PolicySummary: PolicySummary$Type; export {};