google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
68 lines (67 loc) • 2.16 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 enumeration of quarter-hours.
*
* @generated from protobuf message google.ads.googleads.v11.enums.MinuteOfHourEnum
*/
export interface MinuteOfHourEnum {
}
/**
* Enumerates of quarter-hours. For example, "FIFTEEN"
*
* @generated from protobuf enum google.ads.googleads.v11.enums.MinuteOfHourEnum.MinuteOfHour
*/
export declare enum MinuteOfHourEnum_MinuteOfHour {
/**
* Not specified.
*
* @generated from protobuf enum value: UNSPECIFIED = 0;
*/
UNSPECIFIED = 0,
/**
* The value is unknown in this version.
*
* @generated from protobuf enum value: UNKNOWN = 1;
*/
UNKNOWN = 1,
/**
* Zero minutes past the hour.
*
* @generated from protobuf enum value: ZERO = 2;
*/
ZERO = 2,
/**
* Fifteen minutes past the hour.
*
* @generated from protobuf enum value: FIFTEEN = 3;
*/
FIFTEEN = 3,
/**
* Thirty minutes past the hour.
*
* @generated from protobuf enum value: THIRTY = 4;
*/
THIRTY = 4,
/**
* Forty-five minutes past the hour.
*
* @generated from protobuf enum value: FORTY_FIVE = 5;
*/
FORTY_FIVE = 5
}
declare class MinuteOfHourEnum$Type extends MessageType<MinuteOfHourEnum> {
constructor();
create(value?: PartialMessage<MinuteOfHourEnum>): MinuteOfHourEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: MinuteOfHourEnum): MinuteOfHourEnum;
internalBinaryWrite(message: MinuteOfHourEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.MinuteOfHourEnum
*/
export declare const MinuteOfHourEnum: MinuteOfHourEnum$Type;
export {};