google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
69 lines (68 loc) • 2.32 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";
/**
* Container for enum describing possible access role for user.
*
* @generated from protobuf message google.ads.googleads.v11.enums.AccessRoleEnum
*/
export interface AccessRoleEnum {
}
/**
* Possible access role of a user.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.AccessRoleEnum.AccessRole
*/
export declare enum AccessRoleEnum_AccessRole {
/**
* 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,
/**
* Owns its account and can control the addition of other users.
*
* @generated from protobuf enum value: ADMIN = 2;
*/
ADMIN = 2,
/**
* Can modify campaigns, but can't affect other users.
*
* @generated from protobuf enum value: STANDARD = 3;
*/
STANDARD = 3,
/**
* Can view campaigns and account changes, but cannot make edits.
*
* @generated from protobuf enum value: READ_ONLY = 4;
*/
READ_ONLY = 4,
/**
* Role for \"email only\" access. Represents an email recipient rather than
* a true User entity.
*
* @generated from protobuf enum value: EMAIL_ONLY = 5;
*/
EMAIL_ONLY = 5
}
declare class AccessRoleEnum$Type extends MessageType<AccessRoleEnum> {
constructor();
create(value?: PartialMessage<AccessRoleEnum>): AccessRoleEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AccessRoleEnum): AccessRoleEnum;
internalBinaryWrite(message: AccessRoleEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.AccessRoleEnum
*/
export declare const AccessRoleEnum: AccessRoleEnum$Type;
export {};