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"; /** * Indicates if this client still has access to the list. * * @generated from protobuf message google.ads.googleads.v11.enums.UserListAccessStatusEnum */ export interface UserListAccessStatusEnum { } /** * Enum containing possible user list access statuses. * * @generated from protobuf enum google.ads.googleads.v11.enums.UserListAccessStatusEnum.UserListAccessStatus */ export declare enum UserListAccessStatusEnum_UserListAccessStatus { /** * Not specified. * * @generated from protobuf enum value: UNSPECIFIED = 0; */ UNSPECIFIED = 0, /** * Used for return value only. Represents value unknown in this version. * * @generated from protobuf enum value: UNKNOWN = 1; */ UNKNOWN = 1, /** * The access is enabled. * * @generated from protobuf enum value: ENABLED = 2; */ ENABLED = 2, /** * The access is disabled. * * @generated from protobuf enum value: DISABLED = 3; */ DISABLED = 3 } declare class UserListAccessStatusEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): UserListAccessStatusEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: UserListAccessStatusEnum): UserListAccessStatusEnum; internalBinaryWrite(message: UserListAccessStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.UserListAccessStatusEnum */ export declare const UserListAccessStatusEnum: UserListAccessStatusEnum$Type; export {};